diff --git a/README.md b/README.md index f6e4d6e..764b9a8 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,64 @@ SOA_EAGER_BCP_POPULATION=1 | `CDISC_API_KEY` | _(shell env)_ | CDISC Library API key — set in shell, not `config.env` | | `CDISC_SUBSCRIPTION_KEY` | _(shell env)_ | CDISC Library subscription key — set in shell, not `config.env` | +### Configurable CT codelist codes (dropdowns) + +Many dropdowns in the UI (Epoch Type, Arm Type, Role Type, Timing Type, +etc.) present CDISC controlled terminology preferred terms while storing +the underlying codelist C-code in the database. The C-code that backs +each dropdown is itself configurable via `config.env` — edit the value +and restart the server to point that dropdown at an alternate/custom +codelist. Defaults are read by +[`src/soa_builder/web/codelist_config.py`](src/soa_builder/web/codelist_config.py). + +```ini +CODELIST_EPOCH_TYPE=C99079 +CODELIST_ARM_TYPE=C174222 +CODELIST_ARM_DATA_ORIGIN_TYPE=C188727 +CODELIST_ROLE_TYPE=C215480 +CODELIST_ORGANIZATION_TYPE=C215480 +CODELIST_AMENDMENT_REASON=C207415 +CODELIST_AMENDMENT_IMPACT_TYPE=C215481 +CODELIST_GEOGRAPHIC_SCOPE_TYPE=C207412 +CODELIST_GOVERNANCE_DATE_TYPE=C207413 +CODELIST_STUDY_TITLE_TYPE=C207419 +CODELIST_INTERVENTION_ROLE=C207417 +CODELIST_INTERVENTION_TYPE=C99078 +CODELIST_INTERVENTION_UNIT=C66781 +CODELIST_OBJECTIVE_LEVEL=C188725 +CODELIST_ENDPOINT_LEVEL=C188726 +CODELIST_ENCOUNTER_ENVIRONMENTAL_SETTING=C127262 +CODELIST_ENCOUNTER_CONTACT_MODE=C171445 +CODELIST_TIMING_TYPE=C201264 +CODELIST_TIMING_RELATIVE_TO_FROM=C201265 +``` + +| Variable | Default | Dropdown / feature | +|---|---|---| +| `CODELIST_EPOCH_TYPE` | `C99079` | Epoch Type | +| `CODELIST_ARM_TYPE` | `C174222` | Arm Type | +| `CODELIST_ARM_DATA_ORIGIN_TYPE` | `C188727` | Arm Data Origin Type | +| `CODELIST_ROLE_TYPE` | `C215480` | Study Role Type | +| `CODELIST_ORGANIZATION_TYPE` | `C215480` | Organization Type | +| `CODELIST_AMENDMENT_REASON` | `C207415` | Amendment Reason | +| `CODELIST_AMENDMENT_IMPACT_TYPE` | `C215481` | Amendment Impact Type | +| `CODELIST_GEOGRAPHIC_SCOPE_TYPE` | `C207412` | Geographic Scope Type | +| `CODELIST_GOVERNANCE_DATE_TYPE` | `C207413` | Governance Date Type | +| `CODELIST_STUDY_TITLE_TYPE` | `C207419` | Study Title Type | +| `CODELIST_INTERVENTION_ROLE` | `C207417` | Study Intervention Role | +| `CODELIST_INTERVENTION_TYPE` | `C99078` | Study Intervention Type | +| `CODELIST_INTERVENTION_UNIT` | `C66781` | Study Intervention Dose Unit | +| `CODELIST_OBJECTIVE_LEVEL` | `C188725` | Objective Level | +| `CODELIST_ENDPOINT_LEVEL` | `C188726` | Endpoint Level | +| `CODELIST_ENCOUNTER_ENVIRONMENTAL_SETTING` | `C127262` | Encounter Environmental Setting | +| `CODELIST_ENCOUNTER_CONTACT_MODE` | `C171445` | Encounter Contact Mode | +| `CODELIST_TIMING_TYPE` | `C201264` | Timing Type | +| `CODELIST_TIMING_RELATIVE_TO_FROM` | `C201265` | Timing Relative To/From | + +> These codes identify which CDISC CT *codelist* populates a dropdown's +> options — they are unrelated to `CDISC_API_KEY`/`CDISC_SUBSCRIPTION_KEY` +> (API credentials) or `CDISC_CONCEPTS_JSON` (Biomedical Concept overrides). + --- ## Start web server diff --git a/config.env b/config.env index 9dcbd56..e792af1 100644 --- a/config.env +++ b/config.env @@ -99,3 +99,32 @@ CDISC_REQUEST_TIMEOUT=15 # Set to 0 to disable eager population of biomedical concept # properties at startup (enables lazy loading instead). SOA_EAGER_BCP_POPULATION=1 + + +# ------------------------------------------------------------ +# CDISC Codelist Codes (Dropdowns) +# ------------------------------------------------------------ +# Each of these identifies the CDISC CT codelist whose terms +# populate a specific dropdown in the UI. Change a value to +# point that dropdown at an alternate/custom codelist. Changes +# require a server restart to take effect. + +CODELIST_EPOCH_TYPE=C99079 +CODELIST_ARM_TYPE=C174222 +CODELIST_ARM_DATA_ORIGIN_TYPE=C188727 +CODELIST_ROLE_TYPE=C215480 +CODELIST_ORGANIZATION_TYPE=C215480 +CODELIST_AMENDMENT_REASON=C207415 +CODELIST_AMENDMENT_IMPACT_TYPE=C215481 +CODELIST_GEOGRAPHIC_SCOPE_TYPE=C207412 +CODELIST_GOVERNANCE_DATE_TYPE=C207413 +CODELIST_STUDY_TITLE_TYPE=C207419 +CODELIST_INTERVENTION_ROLE=C207417 +CODELIST_INTERVENTION_TYPE=C99078 +CODELIST_INTERVENTION_UNIT=C66781 +CODELIST_OBJECTIVE_LEVEL=C188725 +CODELIST_ENDPOINT_LEVEL=C188726 +CODELIST_ENCOUNTER_ENVIRONMENTAL_SETTING=C127262 +CODELIST_ENCOUNTER_CONTACT_MODE=C171445 +CODELIST_TIMING_TYPE=C201264 +CODELIST_TIMING_RELATIVE_TO_FROM=C201265 diff --git a/docs/soa-workbench-improvement-plan.md b/docs/soa-workbench-improvement-plan.md new file mode 100644 index 0000000..3a12ee0 --- /dev/null +++ b/docs/soa-workbench-improvement-plan.md @@ -0,0 +1,219 @@ +# soa-workbench Improvement Plan + +## Context + +A full-codebase analysis (core Python, Claude agents/skills, MCP server) found that the +project is functionally healthy (~257 passing tests, clean pre-commit pipeline, active +DAIR feature work) but carries structural debt that slows every change: + +- **Oversized hotspots**: `app.py` (7,039 lines), `migrate_database.py` (3,319 lines / + 104 unversioned migrations run on every startup), `create_define_json.py` (4,505), + `amendments.py` (2,596), `utils.py` (1,848 with 8 copy-pasted TTL caches), + `audit.py` (939 with 40+ copy-pasted recorders that swallow exceptions). +- **Test gaps**: 10 routers have no tests, including the 1,377-line + `_freeze_helpers.py` that powers freeze/rollback. +- **MCP server** (`src/soa_builder/mcp/server.py`, 11 tools) covers ~8% of the 165+ + endpoint API: no freeze/rollback, no epoch/arm/element/instance CRUD, no audit + access, no DAIR/exports, no pagination; its write tools bypass the audit trail. +- **Claude config**: db-ops-reviewer agent memory asserts a "rogue `_connect()` in + freezes.py" that has since been fixed; usdm-soa-protocol-expert has empty memory; + three overlapping USDM experts lack routing guidance; skill frontmatter is + incomplete. + +User decisions: full structural refactor; high-value MCP workflow tools; agent/skill +work = stale-memory fixes + USDM routing clarity + a new DAIR report-writer skill +(no migration-advisor agent). + +All work happens on a new branch off `master` (not the active +`pi-add-impact-analysis-report` branch). Python commands use +`source .venv/bin/activate &&`. Never touch `soa_builder_web.db`; ad-hoc smoke tests +must set `SOA_BUILDER_DB=soa_builder_web_tests.db`. + +--- + +## Workstream A — Claude agents, skills & memory (small, do first) + +Low-risk documentation/config edits; restores trust in agent output before the agents +are used to review the refactor. + +1. **Fix db-ops-reviewer stale memory** + - `.claude/agent-memory/db-ops-reviewer/MEMORY.md` and `patterns.md`: remove the + freezes.py "rogue `_connect()` / module-level DB_PATH" claim (fixed in code — + `routers/freezes.py` now uses `from ..db import _connect`); re-verify the other + cited issues/line numbers against current code and update or delete. +2. **Initialize usdm-soa-protocol-expert memory** + - Create `.claude/agent-memory/usdm-soa-protocol-expert/MEMORY.md` seeded with the + recurring SoA→USDM mapping patterns already documented in the agent definition. +3. **Skill frontmatter fixes** + - `.claude/skills/code-review/SKILL.md`: add missing frontmatter fields to match + the other skills. + - `.claude/skills/run-soa-workbench/SKILL.md`: add `command` declaration. +4. **USDM routing guidance** + - Add a short "Which USDM expert to use" section to `CLAUDE.md` (or a shared note + linked from all three): usdm-sme skill = standard/spec questions; + usdm-implementation-expert agent = IG-v4 compliance/validation; + usdm-soa-protocol-expert agent = SoA mapping + live workbench data via MCP. + Cross-link the two project agents' MEMORY.md files. +5. **New skill: `dair-report-writer`** + - `.claude/skills/dair-report-writer/SKILL.md` encoding the DAIR conventions + established on the current branch: decode values instead of `Code_{n}`, + "snapshot" terminology (never "freeze" in report text), table header-row + repetition across page breaks, section 3.4/3.5 intent explanations, explanatory + paragraphs under section-2 subsections. Point it at + `src/usdm/generate_dair.py` and `routers/dair.py`. +6. **Refresh dated project memory** + - Re-verify `bcp_architecture.md` and `feedback_ncit_confidence.md` in the + project memory dir; update or annotate with verification date. + +## Workstream B — MCP server expansion & hardening + +File: `src/soa_builder/mcp/server.py` (raw MCP SDK, stdio, dispatch pattern); +tests: `tests/test_mcp_server.py`. Reuse the web layer's logic — do not duplicate +SQL: call into the same helpers routers use (e.g. `routers/_freeze_helpers.py`, +`usdm.generate_dair.build_dair`) where practical. + +1. **Quality fixes to existing tools (do first)** + - Route all 5 write tools through the audit recorders in `soa_builder/web/audit.py` + (same before/after pattern routers use). + - `assign_instance_activity`: validate `instance_id`/`activity_id` exist before + insert. + - `_create_activity`: remove the silent try/except fallback that drops + label/description; fail with a clear error. + - Add `limit`/`offset` params to `list_soas`, `list_visits`, `list_activities`. +2. **New workflow tools** (~15-20 tools, grouped; each with schema, FK validation, + audit integration, tests): + - **Freeze/rollback**: `list_freezes`, `create_freeze`, `rollback_freeze`, + `diff_freezes` (reuse `_freeze_helpers.py` — after Workstream C adds its + characterization tests). + - **Design entities**: CRUD for epochs, arms, elements, study cells + (mirror the router logic; keep UID generation identical). + - **Instances**: `create_instance`, `update_instance`, `delete_instance`. + - **Audit access**: `get_audit_history(soa_id, entity_type?, limit, offset)`. + - **Reports/exports**: `generate_dair(soa_id, base_freeze_id, revised_freeze_id)` + returning the DOCX path; `export_excel(soa_id)`. + - **Validation**: `validate_soa(soa_id)` wrapping the existing validation module. +3. **Error handling**: wrap sqlite constraint violations into structured error + messages; keep the ValueError-for-validation convention. + +## Workstream C — Structural refactor (phased; each phase lands green) + +Verified facts that shape the design: migrations run at **module import time** in +`app.py` (lines ~305–412: `_init_db()` + 104 bare calls), not in the lifespan; +`_connect` lives in `web/db.py` and is re-exported through `initialize_database.py` +into `app.py`; ~60 test files (and `usdm/generate_study_titles.py`) import from +`soa_builder.web.app`, so `app.py` must remain a permanent compat shim. Routers +avoid circular imports today via deferred `from ..app import ...` inside function +bodies. Each phase is its own branch/PR off `master`, merged sequentially. + +### Phase 0 — Characterization tests (pure test additions) +- `tests/test_freeze_helpers_characterization.py`: TestClient round-trips over + create SoA → populate → freeze → mutate → diff → rollback → preview; plus direct + unit tests for `_diff_entity_list` and representative `_capture_*` functions. +- Thin happy-path + 404 tests for the other 9 untested routers (mock `requests.get` + for the terminology ones, following `tests/test_fetch_sdtm_specializations.py`). +- **Golden schema test** (`tests/test_schema_snapshot.py`): full `sqlite_master` + inventory after fresh init vs checked-in snapshot — safety net for Phases 1/4. +- **Route-inventory test** (`tests/test_route_inventory.py`): `{(method, path)}` + set vs checked-in snapshot — safety net for Phases 3/5. + +### Phase 1 — Migration registry (hand-rolled, not Alembic) +Alembic is wrong here: app is raw `sqlite3` (no SQLAlchemy), and the 104 migrations +are imperative idempotent Python functions — a ~70-line registry preserves them +byte-for-byte. +- New `src/soa_builder/web/migrations/`: `registry.py` (ordered + `MIGRATIONS: list[tuple[name, callable]]` importing existing functions unchanged) + and `runner.py` (`run_pending_migrations()` with a + `schema_migrations(name PRIMARY KEY, applied_at)` table; skip recorded entries). +- **Baselining is free**: first boot runs all 104 (no-ops on up-to-date DBs, exactly + like every boot today) and records them; subsequent boots skip all. Idempotency + retained as safety net. +- In `app.py`: replace the 106-line import block + 104-call block with one + `run_pending_migrations()` call — kept at module import time (tests depend on + `import app` ⇒ DB ready). +- Convention forward: new migrations named `m0105_` in `migrations/`, + appended to the registry; `migrate_database.py` frozen. +- Accepted limitation (documented, not fixed): existing migration functions swallow + their own exceptions, so a failed migration can be recorded as applied — same + semantics as today, protected by idempotency. + +### Phase 2 — `CachedResource` + generic audit recorder +- New `src/soa_builder/web/caching.py`: `CachedResource` as a **`MutableMapping` + subclass** (existing code and tests poke the cache dicts directly with + `.update()`/`["data"]`, and tests mutate module-level instances in place — so the + 8 replacements keep the same names and dict compatibility). Methods: + `is_fresh(ttl)`, `store()`, `fail()`, `invalidate()`. Tighten `_get_ct_rows()` to + use it. +- Rewrite `audit.py` around one `_record_audit(table, entity_col, soa_id, action, + entity_id, before, after)` core + declarative per-table specs (irregular tables + like `reorder_audit` get explicit paths). All 33 `_record_*_audit` names stay as + thin wrappers with identical signatures; exact INSERT columns preserved. Keep the + intentional broad catch ("audit must never break the request") but log at + **error** level instead of warning. + +### Phase 3 — `app.py` split (three sub-PRs) +Target layout: `application.py` (FastAPI instance, mounts, include_router calls), +`bootstrap.py` (`_init_db()` + `run_pending_migrations()` at import), +`lifespan.py`, `templating.py`, `services/concepts.py` + `services/matrix.py` +(business logic), and four new routers for the ~90 inline endpoints: +`routers/soa_core.py`, `routers/exports.py`, `routers/concepts_admin.py`, +`routers/soa_ui.py` (no prefixes; registered in original order → identical URLs). +- **3a — services extraction**: move concept/matrix logic to `services/`; repoint + the deferred `from ..app import ...` in `routers/activities.py`, + `bc_categories.py`, `bc_surrogates.py`, `concept_groups.py`, `rollback.py`, + `_freeze_helpers.py` to top-of-file `..services.*` imports (circularity gone). +- **3b — endpoint extraction** into the four routers; route-inventory test proves + equivalence. +- **3c — composition root + permanent shim**: `app.py` becomes explicit re-exports + (`app`, `main`, `_connect`, `templates`, `fetch_biomedical_concepts`, caches, + etc. — final list grep-driven from `from soa_builder.web.app import` + + `from ..app import` across `src/` and `tests/`). Do NOT migrate the 60 test + files. `soa-builder-web = "soa_builder.web.app:main"` entry point untouched. +- Guard: services modules never import `application` at module level; check with + `python -c "from soa_builder.web.app import app, _connect"` and an + `/openapi.json` diff before/after. + +### Phase 4 — Split `migrate_database.py` by domain +Pure code move now that orchestration is in the registry: `migrations/legacy_core.py`, +`legacy_concepts.py`, `legacy_amendments.py`, `legacy_people_orgs.py`, +`legacy_terminology.py` (bodies unchanged); `migrate_database.py` becomes a +re-export shim (grep for direct test imports first). + +### Phase 5 — Shrink `amendments.py` / `activities.py`; split `_freeze_helpers.py` +File→package pattern with shared router instances: `routers/amendments/` with +`_shared.py` (`router`, `ui_router`, `templates`, UID/code helpers) + `crud.py`, +`components.py`, `scopes.py`, `ui.py`; `__init__.py` re-exports `router`/`ui_router` +so `application.py` imports and all URL paths stay identical. Same for +`routers/activities/` (`crud.py`, `concepts.py`, `dss.py`, `crf.py`, `ui.py`). +Split `_freeze_helpers.py` (now under Phase 0 tests) into +`routers/freeze_support/{capture,diff,rollback}.py` with `_freeze_helpers.py` as a +re-export shim (`usdm/` imports from it). +**Sequencing**: do this after `pi-add-impact-analysis-report` merges (that branch is +active in amendments/DAIR territory), or accept one mechanical rebase. + +### Phase 6 — Mechanical sweeps (last) +- Narrow the ~82 router `except Exception` clauses to `sqlite3.Error`, + `requests.RequestException`, `(KeyError, ValueError)` as evidence dictates; + explicitly keep broad catches in `audit.py`, `lifespan.py`, and migrations. One + commit per router; enable ruff `BLE001` at the end. +- Add return-type hints module-by-module; optionally enable ruff `ANN201` for + `src/soa_builder/web/`. +- Out of scope (flagged follow-up with its own characterization pass): + splitting `usdm/create_define_json.py` (4,505) and `generate_dair.py` (1,635) + beyond repointing their `app` imports in Phase 3. + +### Cross-workstream ordering +A (agent/skill fixes) → B.1 (MCP quality fixes) → C Phase 0 → C Phase 1 → C Phase 2 +→ B.2 freeze/audit MCP tools (needs Phase 0 freeze tests) → C Phases 3–4 → remaining +B.2 tools → C Phase 5 (after DAIR branch merges) → C Phase 6. + +## Verification + +- `source .venv/bin/activate && pytest` green after every phase/workstream step. +- `pre-commit run --all-files` (black/ruff + pytest) before each commit. +- Smoke test via `.claude/skills/run-soa-workbench` (`smoke.sh`, port 9877, 14 + checks) after app.py split and after MCP changes, with + `SOA_BUILDER_DB=soa_builder_web_tests.db`. +- MCP: extend `tests/test_mcp_server.py` (direct `_dispatch()` calls) for every new + tool; verify audit rows are written for MCP mutations. +- Migration registry: test against (a) a fresh empty DB and (b) a copy of an + existing fully-migrated DB (baseline path) — never the production DB itself. \ No newline at end of file diff --git a/docs/usdm-validation-h2q-mc-lzzt-20260618.md b/docs/usdm-validation-h2q-mc-lzzt-20260618.md new file mode 100644 index 0000000..f6c9696 --- /dev/null +++ b/docs/usdm-validation-h2q-mc-lzzt-20260618.md @@ -0,0 +1,137 @@ +# USDM Validation Report: H2Q-MC-LZZT-20260618T1509.json + +**File:** `output/json/H2Q-MC-LZZT-20260618T1509.json` +**USDM Version:** 4.0 +**Generator:** SOA Workbench v1.4.0 +**Validated:** 2026-06-23 +**Overall Confidence:** 73% + +--- + +## Entity Class Inventory + +47 entity classes present across ~7,074 total instances. Three expected classes are absent: + +| Missing Class | Severity | Notes | +|---|---|---| +| `EligibilityCriterion` | Critical | Required by USDM-IG §4.18 | +| `EligibilityCriterionItem` | Critical | Text carrier for criteria | +| `ScheduleTimelineExit` | Major | Required exit markers per §4.14 | +| `BiomedicalConceptCategory` | Minor | Grouping only; optional | +| `Range` | Minor | Needed for `plannedAge` | + +--- + +## Critical Findings (4) + +**C-01 · Eligibility criteria missing** +`InterventionalStudyDesign.eligibilityCriteria = []` and +`StudyVersion.eligibilityCriterionItems = []`. No eligibility criterion text exists +anywhere in the export. USDM-IG §4.18 requires each criterion to be referenced from +the study design population or its cohorts. + +**C-02 · Dangling foreign key on ScheduledDecisionInstance_2** +`defaultConditionId = "blahblahblah"` — no entity with that ID exists across all 27 +scheduled instances in the four timelines. The SDI also has zero `conditionAssignments`, +making it an inoperable decision node. This is a placeholder that was not cleaned up +before export. + +**C-03 · Study.id is null** +The root `Study` entity carries no identifier. USDM-IG §4.4 requires a UUID for global +uniqueness. All other entity IDs follow `{EntityName}_N` correctly. + +**C-04 · EligibilityCriterion / EligibilityCriterionItem entity classes entirely absent** +Consequence of C-01 — listed separately because the entity classes themselves are missing +from the output, not just empty arrays. + +--- + +## Major Findings (6) + +**M-01 · No ScheduleTimelineExit on any timeline** +All four `ScheduleTimeline.exits[] = []`. §4.14 requires exit markers linked from the +last SAI of each timeline. Zero SAIs have `timelineExitId` set. + +**M-02 · 7 of 40 activities (17.5%) linked to no ScheduledActivityInstance** +`Activity_34–40`: Adverse Events, Check Adverse Events, Patient Summary, Supine, +Vital Signs Supine, Stand, Vital Signs Standing — all orphaned with no timeline +assignment. + +**M-03 · studyType, studyPhase, blindingSchema all null** +For a randomized, double-blind, parallel 3-arm trial these are the primary +characterizing fields per §4.8. + +**M-04 · Organization_2 (ClinicalTrials.gov) has wrong type code** +Code C142578 = "Independent Data Monitoring Committee". Should be the clinical study +registry type code (C93453 or equivalent) per §4.7. + +**M-05 · StudyDesignPopulation missing criterionIds, plannedEnrollmentNumber, plannedAge** +Planned enrollment of ~300 is in the description string only. No `Range` entity encodes +an age window. + +**M-06 · StudyVersion.dateValues empty** +At least one approval/effective date at the version level is expected per §4.6. A single +`GovernanceDate` entity exists elsewhere in the document but is not wired here. + +--- + +## Minor Findings (5) + +| ID | Finding | +|---|---| +| N-01 | No `BiomedicalConceptCategory` groupings for 168 BCs (§4.13 recommends groupings: Vital Signs, Labs, Efficacy, Safety) | +| N-02 | `Range` entity absent entirely — direct consequence of M-05 | +| N-03 | `StudyVersion.rationale` and `StudyDesign.rationale` are empty strings `""` | +| N-04 | `StudyDesign.name = "Darren"` — developer placeholder; requires a meaningful value | +| N-05 | `abbreviations`, `narrativeContentItems`, `businessTherapeuticAreas` empty (all optional per schema) | + +--- + +## Passing Checks (9) + +| Check | Result | +|---|---| +| Wrapper shape (`usdmVersion`, `systemName`, `systemVersion`) | Pass | +| StudyCell matrix | Pass — perfect 3 arms × 5 epochs = 15 cells | +| Cross-reference integrity | Pass — zero dangling IDs (except C-02) | +| `mainTimeline` flag | Pass — exactly 1 of 4 timelines carries it | +| ScheduleTimeline `entryIds` | Pass — all resolve to valid SAI IDs | +| Entity UID format | Pass — all follow `{EntityName}_N` monotonic pattern | +| Global ID uniqueness | Pass — zero duplicates across ~7,074 instances | +| BiomedicalConcept-to-Activity linkage | Pass — 161 of 168 BCs linked | +| Code / AliasCode coverage | Pass — 1,276 codes, 994 aliases | + +--- + +## Confidence Breakdown + +| Dimension | Score | Notes | +|---|---|---| +| Schema validity | 95% | OpenAPI schema passes; no type/enum violations | +| Entity class completeness | 78% | 47/50 classes present; 3 missing (2 critical) | +| Cross-reference integrity | 90% | 1 dangling FK (C-02) in ~333 references | +| SoA schedule completeness | 82% | 7 orphan activities, no timeline exits | +| Regulatory metadata | 55% | Study.id null, eligibility absent, studyType null | +| **Overall** | **73%** | | + +The file is safe for internal development and SoA review. It is **not ready for +regulatory submission** without resolving C-01 through C-04. + +--- + +## Remediation Notes (Future Work) + +All fixes are generator-side in `src/usdm/`: + +| Priority | Generator | Fix | +|---|---|---| +| 1 | `generate_studydesign.py` | Wire `eligibilityCriteria` from DB | +| 1 | `generate_studyversion.py` | Wire `eligibilityCriterionItems`; assign UUID to `Study.id` | +| 1 | `generate_schedule_timeline.py` | Fix `ScheduledDecisionInstance_2.defaultConditionId` | +| 2 | `generate_schedule_timeline.py` | Add `ScheduleTimelineExit` per timeline | +| 2 | SoA DB / activities | Investigate 7 orphaned activities | +| 2 | `generate_studydesign.py` | Populate `studyType`, `studyPhase`, `blindingSchema` | +| 2 | `generate_organizations.py` | Correct ClinicalTrials.gov type code to C93453 | +| 2 | `generate_studydesign_population.py` | Add `plannedEnrollmentNumber` and `Range` for age | +| 3 | `StudyDesign.name` | Replace "Darren" placeholder | +| 3 | `rationale` fields | Populate from protocol synopsis | diff --git a/docs/usdm-validation-nct01797120-20260618.md b/docs/usdm-validation-nct01797120-20260618.md new file mode 100644 index 0000000..eab6a83 --- /dev/null +++ b/docs/usdm-validation-nct01797120-20260618.md @@ -0,0 +1,197 @@ +# USDM Validation Report: NCT01797120-20260618T1511.json + +**File:** `output/json/NCT01797120-20260618T1511.json` +**Study:** PrE0102 — Phase II HR+ Metastatic Breast Cancer (Fulvestrant ± Everolimus) +**USDM Version:** 4.0 +**Generator:** SOA Workbench v1.4.0 +**Validated:** 2026-06-23 +**Overall Confidence:** 52% + +This export is a **skeleton SoA** — the study structure is partially defined but the +schedule matrix has no procedural content (no activities linked to any visit instance, +no timing windows). Not suitable for regulatory submission or SDTM derivation. + +--- + +## Entity Class Inventory + +35 entity classes present across ~1,286 total instances (vs. ~7,074 for H2Q-MC-LZZT). +Notable: `Estimand` (6) and `IntercurrentEvent` (15) are populated; `StudyAmendment` is not. + +| Missing Class | Severity | Notes | +|---|---|---| +| `EligibilityCriterion` | Critical | Required by USDM-IG §4.18 | +| `EligibilityCriterionItem` | Critical | Text carrier for criteria | +| `ScheduleTimelineExit` | Critical | Required exit per §4.14 | +| `StudyAmendment` | Info | None recorded for this version | +| `ScheduledDecisionInstance` | Info | No branching logic in this design | +| `BiomedicalConceptCategory` | Minor | Optional groupings | +| `Range` | Major | Needed for `plannedAge`, `plannedEnrollmentNumber` | + +--- + +## Critical Findings (8) + +**C-01 · Study.id is null** +The root `Study` entity carries no identifier. USDM-IG §4.4/§6.3 require a UUID for +global uniqueness and SDR primary key use. All other entity IDs follow `{EntityName}_N` +correctly. + +**C-02 · studyType, studyPhase, blindingSchema all null; model Code is empty** +For a randomized, double-blind, parallel 2-arm Phase II trial these are required +characterizing fields per §4.8. Expected values: +- `studyType` → `{code=C93988, decode=INTERVENTIONAL}` +- `studyPhase` → `{code=C15602, decode=PHASE II TRIAL}` +- `blindingSchema` → `{code=C49660, decode=DOUBLE BLIND}` +- `model.code/decode` → `{code=C82639, decode=PARALLEL}` + +**C-03 · EligibilityCriteria entirely absent** +`InterventionalStudyDesign.eligibilityCriteria = []`, +`StudyVersion.eligibilityCriterionItems = []`, +`StudyDesignPopulation.eligibilityCriteriaId = null`. +PrE0102 has well-defined inclusion/exclusion criteria. Required for SDTM IE domain +mapping per §4.18 and §7.1. + +**C-04 · ScheduleTimelineExit absent** +`ScheduleTimeline_1.exits = []`. Per §4.14 a timeline requires 1..* exits. +Without an exit the timeline is topologically open. + +**C-05 · Dangling foreign key: ScheduledActivityInstance_3.defaultConditionId = "ScheduledActivityInstance_4"** +No instance with ID `ScheduledActivityInstance_4` exists in the timeline. +Instance IDs present: 1, 2, 3, 6, 7, 8, 9, 10, 11. The sequence chain breaks at +C1D15 — the next scheduled visit cannot be resolved. + +**C-06 · All 9 ScheduledActivityInstances have activityIds = []** +No activities are linked to any visit instance. The entire SoA matrix has topology but +no procedural content. This is the most significant completeness gap in this export. + +**C-07 · StudyVersion.dateValues is empty** +No protocol approval or study start date at the version level. Required for SDR +provenance per §4.6. + +**C-08 · Encounter_1.scheduledAtId references Timing_1 which does not exist** +`studyDesignTimings = []` at the design level — no `Timing` objects exist — yet +`Encounter_1` references one. This is a dangling FK at the schedule entry point. + +--- + +## Major Findings (10) + +**M-01 · All 12 StudyRole instances have organizationId=null and personId=null** +Role codes are present but the links to organizations and persons are broken. Breaks +§6.3 API Required Content rule (sponsor role must scope the sponsor identifier). + +**M-02 · StudyDesignPopulation has no populated fields** +`description`, `plannedEnrollmentNumber`, `plannedAge`, `plannedSex=[]`, +`criterionIds=[]` all null/empty. PrE0102 targets ~120 post-menopausal women. + +**M-03 · StudyEpoch_4 (Continuation Phase) has no StudyCells** +2 arms × 4 epochs = 8 cells required; only 6 exist. The Continuation Phase epoch is +referenced in the epoch chain but excluded from the StudyCell matrix. + +**M-04 · studyDesignTimings = [] — no Timing objects at design level** +No visit days, cycle lengths, or windows encoded in the schedule. (One `Timing` +instance exists elsewhere but is not wired into the design timings list.) + +**M-05 · All 4 StudyElement.studyInterventionIds = []** +Treatment elements not linked to interventions; SDTM TE domain generation will fail. + +**M-06 · All 6 Estimand.treatmentId = null; both StudyIntervention.codes = []** +The treatment being estimated is unspecified. No ATC/UNII codes for Fulvestrant or +Everolimus. + +**M-07 · All 14 BiomedicalConceptSurrogate have bcId=null and activityId=null** +Surrogates are defined but all reverse links are broken. + +**M-08 · All 5 Organization.identifier and identifierScheme are empty strings** +Per §4.9/§6.3, organizations must carry DUNS or equivalent identifiers. + +**M-09 · ScheduledActivityInstance_10 ("RANDOMIZE") has encounterId=null** +The randomization step cannot be placed in the SoA timeline. + +**M-10 · 16 of 22 activities (73%) have no BC or BCSurrogate assignment** +50 BiomedicalConcepts are defined in the export but most are not linked back to +activities. + +--- + +## Minor Findings (5) + +| ID | Finding | +|---|---| +| N-01 | `Objective.text` empty for both objectives; `Endpoint.text` empty for all 6 endpoints | +| N-02 | All 6 `Estimand.summaryMeasure = null` (e.g., "Hazard Ratio", "Median PFS") | +| N-03 | Some `Code.decode` fields equal the bare code string rather than the CT preferred term | +| N-04 | `ScheduleTimeline.entryCondition=null`, `plannedDuration=null` | +| N-05 | Typo: `Encounter_8.description = "Foolow-up"` instead of "Follow-up" | + +--- + +## Passing Checks (9) + +| Check | Result | +|---|---| +| Wrapper shape (`usdmVersion="4.0"`, `systemName`, `systemVersion`) | Pass | +| `instanceType` on all entities | Pass | +| StudyCell cross-references (armId, epochId) | Pass — all 6 resolve | +| StudyArm type codes (CDISC CT) | Pass | +| StudyEpoch codes (SDTM CT) | Pass | +| Organization type codes | Pass | +| Indication coded with NCIt | Pass | +| Encounter linked-list chain | Pass — all 8 encounters linked | +| StudyEpoch chain | Pass — 4 epochs linked (order: 1→2→4→3) | + +--- + +## Confidence Breakdown + +| Dimension | Score | Notes | +|---|---|---| +| Schema validity | 65% | Null required fields, empty model Code, dangling FK | +| Entity class completeness | 83% | 35/42 expected classes; 3 critical missing | +| Cross-reference integrity | 72% | SAI_3→SAI_4 broken; Encounter_1→Timing_1 broken; all StudyRoles unlinked | +| SoA schedule completeness | 25% | All 22 activities orphaned; no Timing objects wired | +| Regulatory metadata | 30% | Study.id null; eligibility absent; studyType/phase/blinding null; dateValues empty | +| **Overall** | **52%** | | + +--- + +## Comparison with H2Q-MC-LZZT (same generator version) + +| Dimension | H2Q-MC-LZZT | NCT01797120 | +|---|---|---| +| Overall confidence | 73% | 52% | +| Activities linked to SAIs | 33/40 (82%) | 0/22 (0%) | +| Timing objects | 24 | 0 (wired) | +| studyType/studyPhase/blinding | null | null | +| Study.id | null | null | +| Eligibility criteria | absent | absent | +| ScheduleTimelineExit | absent | absent | +| studyDesign.name | "Darren" (placeholder) | valid | +| Dangling FK | SDI_2 defaultConditionId | SAI_3 defaultConditionId | + +The `Study.id` null, eligibility absent, `studyType`/`studyPhase` null, and +`ScheduleTimelineExit` absent appear to be **systemic generator-level gaps** common +to both exports. The zero activity-to-instance linkage in this export is an additional +data-entry gap specific to this SoA. + +--- + +## Remediation Notes (Future Work) + +All systemic fixes shared with H2Q-MC-LZZT are already logged in +`docs/usdm-validation-h2q-mc-lzzt-20260618.md`. Additional items specific to this study: + +| Priority | Fix | +|---|---| +| 1 | Wire `activityIds` on all `ScheduledActivityInstance` entries | +| 1 | Fix `ScheduledActivityInstance_3.defaultConditionId` (SAI_4 does not exist) | +| 1 | Add `Timing` objects and wire to `studyDesignTimings` and `Encounter.scheduledAtId` | +| 2 | Add `StudyCell` for `StudyEpoch_4` (Continuation Phase) × both arms | +| 2 | Populate `StudyRole.organizationId` and `personId` | +| 2 | Add `Organization.identifier` / `identifierScheme` (DUNS/ROR) | +| 2 | Link `StudyElement.studyInterventionIds` → `StudyIntervention` | +| 2 | Set `Estimand.treatmentId`; add ATC/UNII codes to `StudyIntervention.codes` | +| 2 | Populate `Objective.text` and `Endpoint.text` | +| 3 | Fix typo `Encounter_8.description` ("Foolow-up") | +| 3 | Set `Estimand.summaryMeasure` for all 6 estimands | diff --git a/files/Digital_Amendment_Impact_Report_DAIR.docx b/files/Digital_Amendment_Impact_Report_DAIR.docx new file mode 100644 index 0000000..2263156 Binary files /dev/null and b/files/Digital_Amendment_Impact_Report_DAIR.docx differ diff --git a/files/NCT01797120_protocol_text.txt b/files/NCT01797120_protocol_text.txt new file mode 100644 index 0000000..6219fcd --- /dev/null +++ b/files/NCT01797120_protocol_text.txt @@ -0,0 +1,6266 @@ +PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +1 + +Introduction + +1.1 + +Background and Rationale + +Endocrine therapy represents the foundation of treatment for hormone-receptor +positive metastatic and locally advanced breast cancer. Multiple compounds in +varying classes exist, and those most widely used include the selective estrogen +receptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen +receptor down-regulators (SERDs). Although the utility of these drugs is well +established, as many as 50% of women with hormone-receptor positive breast cancer +will fail to respond to endocrine treatment (de novo resistance). Moreover, those who +do respond will inevitably develop acquired resistance.1 Resistance to endocrine +therapy remains a serious clinical challenge. +Basic scientific research into the mechanisms surrounding endocrine therapy +resistance has been particularly intense in recent years. Advances in this area of +investigation are driving the development of novel treatments and therapeutic +strategies. For example, various signal transduction pathways, when activated, have +been demonstrated to allow breast cancer cells to escape the effect of endocrine +therapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase +signaling pathway appears to play a vital role in drug resistance.2 Several studies +identify a close association between aberrant Akt signaling and tamoxifen resistance.3 +High levels of Akt activity confer resistance to the aromatase inhibitor letrozole and +the selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced +resistance does not appear to be secondary to failure of these agents to inhibit the +estrogen receptor α activity, but instead may lead to altered cell cycle and apoptotic +response.5 Clinically, Akt/PKB activation in breast cancer appears to predict an +inferior outcome among patients treated with endocrine therapy.6 +mTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a +central regulator of many biological processes involved in cellular proliferation, +angiogenesis and metabolism. mTOR is a key protein involved in control and +regulation of the cell’s translational machinery through multiple mechanisms including +by directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point +of convergence for a number of cellular signaling pathways, including Akt/PKB.8 +mTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has +emerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR +activity has been shown to restore tamoxifen response in breast cancer cells with +aberrant Akt activity.9 +Everolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination +treatment with everolimus and either letrozole or fulvestrant has been shown to +reverse Akt-mediated endocrine therapy resistance and restore responsiveness to +anti-estrogens in preclinical studies.5 These observations formed the rationale leading +to the Phase I clinical trial evaluating the combination of everolimus and letrozole in +women previously treated with letrozole ≥ 4 months without objective response (e.g., +stable or progressive disease). Eighteen postmenopausal female patients with +advanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus +at 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well +tolerated and toxicities were manageable and consistent with that expected for +23 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +everolimus monotherapy. The results suggest antitumor activity for this combination +without Pharmacokinetic (PK) interactions. +This study will examine the efficacy and tolerability of the combination of fulvestrant +and everolimus for the treatment of postmenopausal metastatic breast cancer +resistant to an aromatase inhibitor. + +1.2 + +Breast Cancer + +Breast cancer is the most commonly diagnosed malignancy in women worldwide. In +the United States, an estimated 230,480 new cases of invasive breast cancer were +diagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances +in breast cancer therapy, 40-80% of women with node-positive disease and up to +30% of women with node-negative disease at diagnosis will relapse. When distant +metastases occur, the prognosis remains poor with a median survival of 18 to 36 +months from time of recurrence. Among the 60-70% of women with hormone-receptor +positive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine +therapy has shown to yield similar survival rates in hormone-sensitive disease as +compared to chemotherapy; although response rates are lower and responses +develop more slowly. Endocrine therapy is considerably less toxic than +chemotherapy, and is therefore the preferred treatment option for patients with +hormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in +HR-negative disease, in cases unresponsive to endocrine therapy, or when extensive +metastases require rapid tumor response.14 + +1.3 + +Endocrine Therapy for Breast Cancer + +Several endocrine therapies are available for the treatment of metastatic breast +cancer in postmenopausal women, including selective estrogen-receptor modulators +(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the +selective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen +was generally regarded as a standard option in HR-positive disease for adjuvant +therapy, and for first-line therapy of metastatic disease in postmenopausal women. +Within the past decade, however, the AIs (letrozole, anastrozole, exemestane) have +supplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic +disease in postmenopausal women.15,16 There is therefore a need to develop more +effective endocrine therapies for patients with AI-resistant disease, and to enhance +the effectiveness of existing endocrine therapies that have demonstrated efficacy in +AI-resistant disease. + +1.3.1 + +Fulvestrant for Post Menopausal Women with Breast Cancer + +Fulvestrant (Faslodex®, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has +several unique characteristics. It is the first drug which acts as a pure estrogen +receptor (ER) antagonist without known agonist effects. It competitively binds to the +ERs with an approximately 100 times greater affinity than that of tamoxifen. +Fulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were +performed in postmenopausal women with HR-positive metastatic breast cancer who +had progressive disease after tamoxifen therapy. These trials compared fulvestrant +24 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The +primary endpoint for both studies was time to disease progression (TTP), which was +similar between the two treatment arms (5.4 versus 3.4 months in the North American +trial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were +also comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5% +for anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for +anastrozole), median duration of response was 15-19 months (versus 11-15 months +for anastrozole), and median time to disease progression (TTP) was 5.5 months +(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the +clinical activity of fulvestrant in both visceral and non-visceral metastatic disease as +compared with anastrozole.19 These trials led to the approval of Faslodex® +(fulvestrant) Injection for “…the treatment of hormone-receptor positive metastatic +breast cancer in postmenopausal women with disease progression following +antiestrogen therapy”. +Table 1-0 +Phase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer +North American Trial + +18 + +19 + +European Trial + +Treatment Group: + +Fulvestrant + +Anastrozole + +Fulvestrant + +Anastrozole + +No. of Patients: + +206 + +194 + +222 + +229 + +Overall RR (%): + +17.5 + +17.5 + +20.7 + +15.7 + +CR (%): + +4.9 + +3.6 + +4.5 + +1.7 + +PR (%): + +12.6 + +13.9 + +16.2 + +14.0 + +42.2 + +36.1 + +44.6 + +45.0 + +24.8 + +18.6 + +23.9 + +29.3 + +Median TTP (months): + +5.4 + +3.4 + +5.5 + +5.1 + +Median Duration of Response +(months): + +19.0 + +10.8 + +15.0 + +14.5 + +Withdrawal Rate (%): + +2.5 + +2.6 + +3.2 + +1.3 + +Clinical Benefit Rate (%): +SD for more than 24 weeks (%): + +Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III +trial that included 587 postmenopausal women with HR-positive metastatic breast +cancer, but proved to be no more effective than tamoxifen in this setting.20 When +comparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%) +and clinical benefit rate (57% versus 62%) were similar. + +1.3.2 + +Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease + +Several trials have evaluated the role of fulvestrant in AI-resistant disease, as +summarized in Table 1-1. + +25 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Table 1-1 +Phase II or III Trial of Fulvestrant in AI-Resistant Disease +Reference +Ingle, 2006 + +Treatment + +No. + +RR + +CBR + +Median TTP + +21 + +Fulvestrant + +77 + +14% + +25% + +3.0 mo. + +22 + +Fulvestrant + +20 + +5% + +37% + +3.5 mo. + +Fulvestrant + +270 + +7% + +23% + +3.7 mo. + +Exemestane + +270 + +7% + +19% + +3.7 mo. + +Perey, 2007 + +23 + +Chia, 2008 + +The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately +20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by +Chia et al, patients who had progressive disease after treatment with a non-steroidal +AI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase +inhibitor exemestane. In contrast to most other trials that utilized a single 250 mg +monthly dose based upon the original pharmacokinetic studies,23 patients in the +EFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28 +(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule +may more rapidly achieve therapeutic blood levels. There was no significant +difference in CBR between the two treatment arms. Nevertheless, the EFECT trial +confirmed the effectiveness of fulvestrant previously reported in other smaller trials of +fulvestrant in AI-resistant disease. +Previous trials had demonstrated that a dose of 125 mg was less effective than the +250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than +the 250 mg monthly dose may produce greater clinical benefit, several trials +evaluated alternative dosing schedules (similar to that used in the EFECT trial), +including FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM +(NCT00099437). + +1.3.3 + +Rationale for Fulvestrant for this Trial + +Fulvestrant has demonstrated activity when used as first, second, or third line +endocrine therapy, making it an attractive therapy for combination with other agents. +In addition, it is commonly reserved for use following disease progression on AI +therapy. The loading dose schedule employed in the EFECT trial will be used in this +study taking advantage of the known dose-response effect observed for fulvestrant, +the more rapid achievement of therapeutic blood levels, the extensive efficacy and +safety experience with this schedule, and because it appears to be emerging as the +preferred schedule for fulvestrant based upon the results of ongoing and recently +completed clinical trials. +The recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every +28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and +every 28 days thereafter (the current FDA-approved dose).24 The study demonstrated +that the higher dose was more effective. Median time to progression (TTP) was 6.5 +months with the higher dose compared with 5.5 months with the lower dose (HR 0.8, +p=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low +dose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had + +26 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +relapsed/progressed on an aromatase inhibitor (the population targeted in this study), +median TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard +arm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose +regimen as utilized in the CONFIRM trial.24 + +1.4 + +Everolimus (RAD001) + +Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR +inhibitor. +Everolimus has been in clinical development since 1996 as an immunosuppressant in +solid organ transplantation. Everolimus is approved in Europe and other global +markets (trade name: Certican®) for cardiac and renal transplantation, and in the +United States (trade name: Zortress®) for the prevention of organ rejection of kidney +transplantation. +Everolimus was developed in oncology as Afinitor® and was approved for advanced +renal cell carcinoma (RCC) in 2009. In 2010, Afinitor® received United States (US) +approval for patients with subependymal giant cell astrocytoma (SEGA) associated +with tuberous sclerosis (TS). Everolimus is also available as Votubia® in the +European Union (EU) for patients with SEGA associated with TS. Afinitor® was +approved for “progressive pancreatic neuroendocrine tumor (PNET) in patients with +unresectable, locally advanced, or metastatic disease” in 2011 in various countries, +including the US and Europe. +In 2012 Afinitor® received approval for the treatment of postmenopausal women with +advanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+ +BC) in combination with exemestane, after failure of treatment with letrozole or +anastrozole. Furthermore in 2012, Afinitor® received approval for the treatment of +patients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not +requiring immediate surgery. +Everolimus is being investigated as an anticancer agent based on its potential to act: +• + +Directly on the tumor cells by inhibiting tumor cell growth and proliferation. + +• + +Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via +potent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced +proliferation of endothelial cells). The role of angiogenesis in the maintenance of +solid tumor growth is well established, and the mTOR pathway has been +implicated in the regulation of tumor production of proangiogenic factors as well +as modulation of VEGFR signaling in endothelial cells. + +At weekly and daily schedules and at various doses explored, everolimus is generally +well tolerated. The most frequent adverse events (rash, mucositis, fatigue and +headache) associated with everolimus therapy are manageable. Non-infectious +pneumonitis has been reported with mTOR inhibitors but is commonly low-grade and +reversible. + +1.4.1 + +mTOR Pathway and Mechanism of Action + +At cellular and molecular levels, everolimus acts as a signal transduction inhibitor. +Everolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically +27 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly +conserved serine-threonine kinase which is present in all cells and is a central +regulator of protein synthesis and ultimately cell growth, cell proliferation, +angiogenesis and cell survival. mTOR is the only currently known target of +everolimus.25 +mTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in +a wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative +regulator; through PI3K mutation/amplification; through AKT/PKB overexpression/ +overactivation; through modulation of TSC1/TSC2 tumor suppressors). In addition, +activation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis +through increased aggressiveness, resistance to treatment and progression. +The main known functions of mTOR include the following:7,25 +• +• +• + +• +• + +mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient +levels, facilitating cell-cycle progression from G1 to S phase in appropriate growth +conditions. +The PI3K-mTOR pathway itself is frequently activated in many human cancers, +and oncogenic transformation may sensitize tumor cells to mTOR inhibitors. +Through inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and +activating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein +translation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to +decreased expression of HIF-1. +The activation of mTOR pathway is involved in the production of pro-angiogenic +factors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation. +The regulation of mTOR signaling is complex and involves positive regulators, +such as AKT that phosphorylate and inactivate negative regulators such as the +Tuberous Sclerosis Complex (TSC1/TSC2). + +mTOR is represented by two structurally and functionally distinct multiprotein +signaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and +mTORC2 (mTOR complex 2, rapamycin insensitive).26 +mTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as +PKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated +AKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex, +thus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows +Rheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1. +AKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the +PRAS40-mediated inhibition of mTORC1.27,28 +mTORC2 (mTOR complex 2) is activated through a currently unknown mechanism, +possibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that +mTORC2 phosphorylates and activates a different pool of AKT that is not upstream of +mTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is +rapamycin insensitive and is required for the organization of the actin cytoskeleton.26 +mTORC1-mediated signaling is subject to modulation by the macrocyclic lactone +rapamycin and its derivatives, such as everolimus. Once these agents bind to the 12 +kDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and +28 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +inhibit phosphorylation of mTOR substrates. As a consequence, downstream +signaling events involved in regulation of the G1 to S-phase transition are inhibited. +This mechanism is thought to be responsible for the immunosuppressive effects of +rapamycin as well as its putative antineoplastic activity.29 As many cancers are +characterized by dysregulation of G1 transit (for example, overexpression of cyclin or +cyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for +inducing cytostasis.7 +1.4.1.1 + +Preclinical Studies + +Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation +of cells. The only currently known target of everolimus is mTOR, a key regulatory +protein affecting cell growth.25 Everolimus exerts its activity through high affinity +interaction with an intracellular receptor protein, the immunophilin FKBP12. The +FKBP12/everolimus complex subsequently interacts with the mTOR protein kinase, +inhibiting downstream signaling events involved in regulation of the G1 to S-phase +transition. +The main known functions of mTOR include: +• + +Function as a sensor of mitogens, growth factors, energy and nutrient levels, +facilitating cell-cycle progression from G1 - S phase in appropriate growth +conditions. + +• + +Regulation of protein synthesis important for tumor cell proliferation and +angiogenesis through inactivating eukaryotic initiation factor 4E binding proteins +and activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example, +activation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth +muscle cell growth and proliferation. + +The PI3K-mTOR pathway itself is frequently activated in many human cancers, and +oncogenic transformation may sensitize tumor cells to mTOR inhibitors. The +regulation of mTOR signaling is complex and involves positive regulators such as +AKT that phosphorylate and inactivate negative regulators such as the Tuberous +Sclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions; +hence, the activities of everolimus may vary depending upon cell type. +The mTOR inhibitory activities presumably contribute to the anti-proliferative activity +of everolimus against tumor cell lines. However, everolimus may also exert an +antitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and +everolimus potently inhibit proliferation of endothelial cells and have antiangiogenic +activity in vivo.30,31 Exactly which molecular determinants predict responsiveness of +tumor cells to everolimus is still unclear. Currently, the activation status of the +PI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to +rapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation +of AKT has been suggested to sensitize tumors to the effects of inhibition of +mTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in +baseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient +population more likely to derive benefit from mTOR inhibition.32 + +29 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity +binding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar +potency of rapamycin and everolimus was also demonstrated at forming the mTOR/ +FKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory +activity against 10 other protein kinases at concentrations up to 10 μM. +The anti-proliferative effects of everolimus were investigated in a mixed panel of 48 +different tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung, +melanoma, prostate and renal). The majority of tumor cell lines were highly sensitive +to the anti-proliferative effects of everolimus while a few others appeared intrinsically +insensitive, or ‘resistant’ (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the +48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34 +Everolimus was also shown to have activity in human pancreatic neuroendocrine +cells, where induction of apoptosis was reported,35 as well as in acute myeloid +leukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse +large B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and +hepatocellular carcinoma cells.42 +Everolimus was also evaluated in a clonogenic assay using cells derived from 81 +patient derived tumor xenografts never cultured in vitro (11 human tumor types with 3 +to 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC), +Small Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and +pleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells +were found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher +than the tumor lines. +Everolimus was effective and well tolerated against subcutaneous (s.c.) tumors +established from a variety of tumor cell lines of diverse histotypes (NSCLC, +pancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of +reduction of tumor growth rates rather than producing regressions or stable disease +although, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors, +regressions could be obtained. These effects occurred within the dose range of 2.5 to +10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice +divided by the change in tumor volume of control mice (T/C) typically ranged from +approximately 15 to 50% at optimal doses. A marked loss of antitumor activity +occurred when tumor-bearing mice were treated with everolimus once per week, but +improved moderately with twice per week dosing. Antitumor activity of everolimus has +also been demonstrated in mouse models of ovarian,31 breast,43,44 and +gastrointestinal stromal tumors.45 + +1.4.2 + +Pre-Clinical Safety + +In safety pharmacology studies, everolimus was devoid of relevant effects on vital +organ functions including the cardiovascular, respiratory and nervous systems. +Everolimus had no effects on QT interval. Furthermore, everolimus showed no +antigenic potential. Although everolimus passes the blood-brain barrier, there was no +indication of relevant changes in the behavior of rodents, even after single oral doses +up to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day. +30 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +The preclinical safety profile of everolimus was assessed in mice, rats, minipigs, +monkeys, and rabbits. The major target organs were male and female reproductive +systems (testicular tubular degeneration, reduced sperm content in epididymides and +uterine atrophy) in several species; lungs (increased alveolar macrophages) in rats +and mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney +changes were seen in the rat (exacerbation of age-related lipofuscin in tubular +epithelium, increases in hydronephrosis) and mouse (exacerbation of background +lesions). There was no indication of kidney toxicity in monkeys or minipigs. +Genotoxicity studies covering relevant genotoxicity endpoints showed no evidence of +clastogenic or mutagenic activity. Administration of everolimus for up to 2 years did +not indicate any oncogenic potential in mice and rats up to the highest doses, +corresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In +reproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and +was considered potentially teratogenic in rats. It is therefore recommended that +women of childbearing potential should use effective contraceptive measures during +the entire treatment period and for 8 weeks thereafter. +More pre-clinical information is provided in the Investigator’s Brochure. + +1.4.3 +1.4.3.1 + +Clinical Experience + +Everolimus Pharmacokinetics + +Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state +AUC0-τ is dose-proportional over the dose range between 5 to 70 mg in the weekly +regimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two +weeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg +for both the weekly and daily regimens. At doses of 20 mg/week and higher, the +increase in Cmax is less than dose proportional. In healthy subjects, high fat meals +reduced systemic exposure to everolimus 10 mg (as measured by Area Under the +Concentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax +by 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had +no apparent effect on the post absorption phase concentration-time profile. +The blood-to-plasma ratio of everolimus, which is concentration-dependent over the +range of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the +plasma is approximately 20% at blood concentrations observed in cancer patients +given everolimus 10 mg/day. Plasma protein binding is approximately 74% both in +healthy subjects and in patients with moderate hepatic impairment. +Everolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP. +Following oral administration, everolimus is the main circulating component in human +blood and is considered to contribute the majority of the overall pharmacologic +activity. No specific excretion studies have been undertaken in cancer patients; +however, data available from the transplantation setting found the drug to be mainly +eliminated through the feces. There was a significant correlation between AUC0-τ and +pre-dose trough concentration at steady-state on the daily regimen. The mean +elimination half-life of everolimus is approximately 30 hours. +Appendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers. + +31 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4 +inhibitors/inducers and other medications. +More information on everolimus pharmacokinetics is provided in the Investigator’s +Brochure. +1.4.3.2 + +Everolimus Pharmacodynamic Studies + +Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker +p70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that +5-10 mg daily should be an adequate dose to produce a high-degree of sustained +target inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were +evaluated through serial biopsy before and during treatment. Biopsy on treatment +took place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on +Day 4 or 5 of the same week. Molecular activity was measured by +immunohistochemistry. In the absence of a reliable technique for measuring mTOR +phosphorylation, the phosphorylation status of downstream markers S6 and eIF4G, +for which reliable antibodies exist, was selected as reflecting the immediate +pharmacodynamic effect of everolimus. Also measured were changes in the +phosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five +patients were treated and the results revealed a dose and schedule dependent +inhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at +the 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of +the treated tumors. In the daily schedule, there was a correlation between everolimus +plasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was +good concordance of mTOR pathway inhibition between skin and tumor. [Study +C2107].47 +More information on everolimus pharmacodynamics is provided in the Investigator’s +Brochure (IB). +1.4.3.3 + +Clinical Experience with Everolimus + +Everolimus has been in clinical development since 1996 as an immunosuppressant in +solid organ transplantation and was approved in Europe in 2003 under the trade +name Certican®, for the prevention of organ rejection in patients with renal and +cardiac transplantation. It is also approved in the United States (trade name: +Zortress®) for the prevention of organ rejection of kidney transplantation. Additional +non-oncologic indications currently being explored are wet age-related macular +degeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD). +Clinical experience of everolimus in the transplant indication is summarized in a +separate Investigator’s Brochure. +In oncology, everolimus has been in clinical development since 2002 for patients with +various hematologic and non-hematologic malignancies as a single agent or in +combination with antitumor agents. Please note that safety pharmacology and +toxicology studies as well as some human pharmacology studies which have been +conducted in support of the transplant indication, are described in the oncology IB +due to the relevance of these data for the oncology indication. Malignancies that are +currently being evaluated in Novartis sponsored studies include the following: +32 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic +neuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell +lymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In +addition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated +subependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being +evaluated. Colorectal cancer (CRC) is no longer being evaluated. +Everolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name +Afinitor® for patients with advanced renal cell carcinoma in the US, EU and several +other countries and is undergoing registration in other regions worldwide. Recent +approval was granted in the US for the treatment of patients with subependymal giant +cell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require +therapeutic intervention but are not candidates for curative surgical resection. +Phase I dose escalating studies, exploratory Phase I/II studies with everolimus as +single agent or in combination with other anti-cancer agents, Phase II/III studies of +everolimus in indications, and Phase III double-blind studies are contributing to the +extensive database. +Approximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011: +• +• +• +• + +9,528 patients in Novartis-sponsored clinical trials +2,559 patients in the individual patient supply program +6,638 in investigator-sponsored studies. +In addition, healthy volunteer subjects have participated in the clinical +pharmacology studies as described in Section 1.4.3.1. + +As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications +mRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer +(1) and HCC (1). +Recent approvals of everolimus (Afinitor®) were based upon a Phase III, international, +multicenter randomized, double-blind, placebo-controlled study [C2240] in patients +with metastatic renal cell carcinoma (mRCC) whose disease had progressed despite +prior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine +kinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded, +independent central review, was the primary endpoint. Secondary endpoints included +safety and objective tumor response. +In the pivotal, Phase III study [C2240], which included patients with advanced renal +cell carcinoma, the most common adverse reactions (incidence ≥ 10%) were +stomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation, +vomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis, +pruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence ≥ +2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis +is a class effect of rapamycin derivatives, including everolimus and some of these +cases have been severe and on rare occasions, fatal outcomes have been observed. +Everolimus has immunosuppressive properties and may predispose patients to +bacterial, fungal, viral or protozoan infections, including infections with opportunistic +pathogens. Localized and systemic infections, including pneumonia, other bacterial +infections, invasive fungal infections, such as aspergillosis or candidiasis and viral +33 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +infections including reactivation of hepatitis B virus, have been described in patients +taking everolimus. Some of these infections have been severe (e.g. leading to +respiratory or hepatic failure) and occasionally have had a fatal outcome. +The most common laboratory abnormalities (incidence ≥ 50%) were anemia, +hypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and +increased creatinine. The most common grade 3/4 laboratory abnormalities +(incidence ≥ 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and +hypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection +(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The +rates of treatment-emergent adverse reactions resulting in permanent discontinuation +were 7% and 0% for the everolimus and placebo treatment groups, respectively. +Safety data from study [C2240] are described in detail in Section 1.4.3.3. +Overall, safety data available from completed, controlled and uncontrolled studies are +consistent with the aforementioned findings of the Phase III trial. Everolimus is +generally well tolerated at weekly and daily dose schedules. The safety profile is +characterized by manageable adverse events (AEs). These AEs are generally +reversible and non-cumulative. +Further detailed information regarding everolimus clinical development, safety and +efficacy is provided in the Investigator’s Brochure. +1.4.3.4 + +Clinical Experience with Everolimus in Metastatic Breast Cancer +Resistant to Non-Steroidal Aromatase Inhibitors + +Based on data indicating that resistance to endocrine therapy in breast cancer is +associated with activation of the mammalian target of rapamycin (mTOR) intracellular +signaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal +aromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO +daily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive +advanced breast cancer who had recurrence or progression while receiving previous +therapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat +advanced disease (or both). The primary end point was progression-free survival. +Secondary end points included survival, response rate, and safety. A preplanned +interim analysis was performed by an independent data and safety monitoring +committee after 359 progression-free survival events were observed. Baseline +characteristics were well balanced between the two study groups. The median age +was 62 years, 56% had visceral involvement, and 84% had hormone-sensitive +disease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%), +fulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse +events were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the +placebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%), +hyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At +the interim analysis, median progression-free survival was 6.9 months with +everolimus plus exemestane and 2.8 months with placebo plus exemestane, +according to assessments by local investigators (hazard ratio for progression or +death, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median +progression-free survival was 10.6 months and 4.1 months, respectively, according to +central assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study +met its pre-specified endpoint, which led to FDA approval of everolimus in +34 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +combination with exemestane for this indication in the U.S. on July 20, 2012.48 +Overall survival results were immature at the time of the interim analysis, with a total +of 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those +in the exemestane-alone group died. Patients and investigators continue to be +unaware of study assignments and will remain so until survival results are mature for +analysis.49 + +1.5 + +Rationale and Study Design + +We hypothesize more complete blockade of the ER-signaling pathway may be +achieved with selective estrogen receptor downregulator fulvestrant (given at a high +dose) than may be achieved with the steroidal AI exemestane, and that this will result +in either comparable or greater effectiveness for the fulvestrant-everolimus +combination than the exemestane-everolimus combination. This is supported by +preclinical data demonstrating that fulvestrant is particularly effective when combined +with agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone +long-term estrogen deprivation, as is the case for patients who have acquired +resistance to AI therapy.50 +We therefore propose to study the efficacy of fulvestrant in combination with +everolimus for the treatment of post-menopausal HR-positive metastatic breast +cancer in women who have progressed after treatment with an aromatase inhibitor. +The combination of a novel class of agents (mTOR inhibitors) and an established +standard treatment for metastatic HR-positive breast cancer may potentially increase +the clinical benefit by targeting multiple different biological pathways. +This is a randomized, double-blind, placebo controlled Phase II study. It is expected +that 130 patients will be accrued at 25 centers within the US. Patients will be +randomized (1:1) to receive everolimus or placebo after consideration of stratification +factors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic +disease vs. no prior chemotherapy. +Induction Phase: +Treatment during the Induction Phase includes: +Fulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1, +then 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28 +days) plus everolimus 10 mg (two- 5 mg tablets) PO daily +OR +Fulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1, +then 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28 +days) plus placebo two tablets PO daily +Patients will be evaluated for disease response every 12 weeks (every 3 treatment +cycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for +a total of up to 12 cycles. + +35 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Continuation Phase: +Patients with no evidence of progressive disease who remain on study after +completing Cycle 12 will be unblinded and proceed to the Continuation Phase. +Patients in the Continuation Phase should continue to receive fulvestrant alone (if +originally randomized to placebo) or in combination with everolimus (if originally +randomized to everolimus) at the same dose and schedule. Patients will continue to +be evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1 +week, and may continue treatment until disease progression or unacceptable toxicity. +All patients will be followed for 30 days for toxicity after the last dose of study therapy +(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1) +attributed to study therapy, whichever is longer (or if >grade 1, event must be +permanent and stable). + +36 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +2 + +Objectives + +2.1 + +Primary Objective + +To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor +therapy treated with fulvestrant and everolimus compared to fulvestrant alone. + +2.2 + +Secondary Objectives + +To describe the safety profile, objective response rate, time to progression and +overall survival in this patient population. + +37 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +3 + +Selection of Patients + +3.1 + +Eligibility Criteria + +Each of the criteria in the following section must be met in order for a patient to be +considered eligible for this study. +PrECOG will not grant any exceptions or waivers to protocol eligibility criteria. +In calculating pre-treatment days of tests and measurements, the day a test or +measurement is done is considered Day 0. Therefore, if a test is done on a +Monday, the Monday four weeks later would be considered Day 28. +Note: All questions regarding eligibility should be directed to the PrECOG Study +Contact in study materials. Questions will be further discussed with the medical leads +for the trial as deemed appropriate (e.g., medical monitor, study chair). +Investigator sites may use the eligibility checklist (see Appendix A: Eligibility +Checklist) which will be provided as a separate study document, as documentation +that eligibility criteria were verified. If used, it should be reviewed, signed, and dated +prior to patient randomization by the treating physician, and all required elements of +source documentation must be found in the patient record (e.g. scans, consent, +pathology). +Inclusion Criteria: +1. Must be willing to sign a protocol-specific informed consent. +2. Patients must be 18 years of age or older. +3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B: +ECOG Performance Status Scale). +4. Patients must have histologically or cytologically confirmed adenocarcinoma +of the breast. +5. Patients must have stage IV disease or inoperable locally advanced disease. +6. Patients must have ER and/or PR-positive disease as determined by their +local pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must +be HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH +methodologies by ASCO-CAP criteria.52 +7. Patients must be Aromatase Inhibitor (AI) resistant, defined as: +• +• + +relapsed while receiving adjuvant therapy with an aromatase inhibitor +(anastrozole, letrozole, or exemestane) or, +progressive disease while receiving an aromatase inhibitor for metastatic +disease. + +Note: Patients may have received an endocrine agent (e.g., Tamoxifen) +between the time of progression on an AI and registration. + +38 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +8. Patients who have received one prior cycle (dose on day 1 and day 15) of +fulvestrant within 28 days of randomization are eligible so long as they meet +other eligibility criteria. +• + +patients previously treated with two or more prior cycles of fulvestrant are +not eligible. + +9. Patients must be female and postmenopausal, defined as: +• +• +• +• + +• + +a history of at least 12 months without spontaneous menstrual bleeding or, +prior bilateral salpingo-oophorectomy, with or without hysterectomy or, +age ≥ 55 years with a prior hysterectomy with or without oophorectomy or, +age <55 years with a prior hysterectomy without oophorectomy or +unknown status, with a documented FSH level in postmenopausal range +within 4 weeks of randomization or, +receiving a gonadotropin releasing hormone analog (GnRH) to suppress +ovarian function (e.g., goserelin 3.6 mg q 4 weeks). + +10. Patients may have received up to one prior systemic chemotherapy regimen +for metastatic disease. +11. Adequate organ function, as evidenced by ALL the following obtained within 4 +weeks of randomization*: +• +• +• +• +• +• +• + +• + +total white blood cell count (leukocytes, WBC) ≥ 3.0 x 109/L, absolute +neutrophil count (ANC) ≥ 1.5 x 109/L and platelet count ≥ 100 x 109/L +hemoglobin ≥ 9 g/dL +serum bilirubin ≤ 1.5 x ULN +AST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases) +serum creatinine ≤ 1.5 x ULN +serum albumin ≥ 3 g/dL +fasting serum cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND fasting +triglycerides ≤ 2.5 x ULN. Note: In case one or both of these thresholds +are exceeded, the patient can only be included after initiation of +appropriate lipid lowering medication. +PT with INR ≤ 1.5 (Anticoagulation is allowed if target INR ≤ 1.5 on a +stable dose of warfarin or on a stable dose of LMW heparin for >2 weeks +at time of randomization.) + +*Please see study table in Section 7.0 for labs that may need to be repeated +within ≤ 7 days of Cycle 1 Day 1 (C1D1). +12. Patients may have measurable disease, non-measurable disease (e.g., bone +only metastases), or both per RECIST Version 1.1 Criteria. Measurable +lesions are defined as those that can be accurately measured in at least one +dimension (longest diameter to be recorded) as ≥ 20 mm by chest x-ray, as ≥ +10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All tumor +measurements must be recorded in millimeters (or decimal fractions of +centimeters). Note: Tumor lesions that are situated in a previously irradiated +area are not considered measurable. +39 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma +in situ of the cervix within the past five years must have been treated with +curative intent. Patients with a history of prior malignancy are eligible provided +they were treated with curative intent and have been free of disease for >3 +years. +Exclusion Criteria: +1. Patients who have had any major surgery or significant traumatic injury within +4 weeks of randomization, or have not recovered from the side effects of any +major surgery (defined as requiring general anesthesia) or patients that may +require major surgery during the course of the study are not eligible. +(Placement of vascular access device will not be considered major surgery.) +2. Patients may not be receiving any other investigational agents or have +received any investigational agent within 4 weeks of randomization. +3. Patients must not be receiving any concomitant anticancer treatment or have +received anticancer treatment within 4 weeks of randomization (including +chemotherapy, radiation therapy, antibody based therapy, etc.), with the +following exceptions: +• + +Bisphosphonates, Zometa or Xgeva for bone metastases + +• + +Hormonal therapy (e.g., AI, Tamoxifen) + +• + +a GnRH analog is permitted if the patient had progressive disease on a +GnRH analog plus a SERM or an AI; the GnRH analog may continue but +the SERM or AI must be discontinued. + +4. Patients must not have received prior treatment with an mTOR inhibitor +(sirolimus, temsirolimus, everolimus). +5. Patients must not be receiving chronic, systemic treatment with corticosteroids +or another immunosuppressive agent greater than or equal to 5 mg +prednisone or its equivalent daily. Topical or inhaled corticosteroids are +allowed. +6. Patients must not receive immunization with attenuated live vaccines within +one week of randomization or during the study period. Close contact with +those who have received attenuated live vaccines should be avoided during +treatment with everolimus. Examples of live vaccines include intranasal +influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella +and TY21a typhoid vaccines. +7. Patients must not have current or a prior history of brain metastases or +leptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic +involvement (>50% of the liver involved) and symptomatic lymphangitic +metastases. +8. Patients must not have a known hypersensitivity/history of allergic reactions +attributed to compounds of similar chemical or biologic composition to +everolimus (or other rapamycins such as sirolimus, temsirolimus) or +fulvestrant. +40 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +9. Since everolimus may cause bone marrow suppression, patients with +congenital or acquired immune deficiency at increased risk of infection are not +eligible. This includes patients being treated with chronic immunosuppressive +agents (including greater than or equal to 5 mg prednisone or its equivalent +daily), and patients with known HIV seropositivity. +10. Patients must not have any impairment of gastrointestinal function or +gastrointestinal disease that may significantly alter the absorption of +everolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea, +malabsorption syndrome or small bowel resection). +11. Patients must not have an active, bleeding diathesis. +12. Patients must not have a history of any condition or uncontrolled intercurrent +illness including, but not limited to, ongoing or active infection or psychiatric +illness/social situations that in the opinion of the local investigator might +interfere with or limit the patient’s ability to comply with the protocol or pose +additional or unacceptable risk to the patient. +13. Patients must not have any severe and/or uncontrolled medical conditions or +other conditions that could affect their participation in the study such as: +• + +Symptomatic congestive heart failure of New York Heart Association Class +III or IV (see Appendix D) + +• + +Unstable angina pectoris, myocardial infarction within 6 months of +randomization, serious uncontrolled cardiac arrhythmia or any other +clinically significant cardiac disease + +• + +History of symptomatic pulmonary disease or non-malignant pulmonary +disease (e.g. COPD) requiring treatment. Such patients would be eligible if +PFTs performed within 8 weeks of treatment noted a DLCO greater than +50%. + +• + +Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN +(Note: Optimal glycemic control should be achieved before starting trial +therapy.) + +• + +Active (acute or chronic) or uncontrolled severe infections + +• + +Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh +Class C). + +Note: A detailed assessment of Hepatitis B/C medical history and risk factors +must be done at screening for all patients. HBV DNA and HCV RNA PCR +testing are required at screening for all patients with a positive medical history +based on risk factors and/or confirmation of prior HBV/HCV infection. (see +Section 7.1.1 for additional details). + +41 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +4 + +Randomization Procedures + +4.1 + +Ethics + +This study will be conducted in accordance with the ethical principles that have their +origin in the current Declaration of Helsinki and will be consistent with applicable US +regulatory requirements and International Conference on Harmonization Good +Clinical Practice (ICH GCP). +The study will be conducted in compliance with the protocol. The protocol and any +amendments and the patient informed consent will receive Institutional Review Board +(IRB) approval prior to initiation of the study. +Freely given written informed consent must be obtained from every patient or their +legally acceptable representative prior to clinical trial participation, including informed +consent for any screening procedures conducted to establish patient eligibility for the +trial. +Study personnel involved in conducting this trial will be qualified by education, +training, and experience to perform their respective task(s). This trial will not use the +services of investigators or study personnel where sanctions have been invoked or +where there has been scientific misconduct or fraud (e.g., loss of medical licensure, +debarment). Investigators are responsible for the conduct of the study at their study +site. + +4.2 + +Regulatory Requirements + +Before a site may enter patients, protocol-specific regulatory and other documents +must be submitted to PrECOG as noted in study materials. Detailed information +regarding document submission and control is provided to each site in separate study +materials. +Once all required documents are received, reviewed and approved by PrECOG or +their representative, a Study Reference Manual (SRM) will be forwarded to the site. +Any changes to site regulatory documents must be submitted by the investigator to +the responsible party in a timely manner. Initial study drug shipment will not occur +until the regulatory packet is complete. No patients will begin protocol therapy without +formal randomization as per the process below. + +4.3 + +Patient Randomization + +Patients must meet all of the eligibility requirements listed in Section 3 prior to +randomization. Treatment must begin ≤ 7 working days from randomization. +An eligibility checklist has been appended as an example to the protocol and a usable +version is available in separate study materials provided to the site. A confirmation of +eligibility assessment by the investigator/site will be performed during the +randomization process. +Information regarding stratification factors (performance status, measurable disease +and prior chemotherapy) must be available at the time of randomization. + +42 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Once it is determined that a patient meets all eligibility requirements, the patient will +be randomized to the study by site personnel using an electronic interactive web +registration (IWR) system. Full information regarding registration and randomization +procedures and guidelines can be found in the SRM provided to your site. All +correspondence regarding patient randomization must be kept in the study records. + +43 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5 + +Treatment Plan + +5.1 + +Administration Schedule + +Note: 1 cycle = 28 days. +Patients must begin treatment within 7 working days of randomization. +Disease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds +to every 3 treatment cycles) and patients will be treated until disease progression, +unacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients +with no evidence of progressive disease who remain on study after completing 12 +cycles will be unblinded and proceed to the Continuation Phase. Patients in the +Continuation Phase should continue to receive fulvestrant alone (if originally +randomized to placebo) or in combination with everolimus (if originally randomized to +everolimus) at the same dose and schedule. Disease evaluations will continue to +occur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may +continue treatment until disease progression is documented or unacceptable toxicity. +All patients will be followed for 30 days for toxicity after the last dose of study therapy +(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1) +attributed to study therapy, whichever is longer (or if >grade 1, event must be +permanent and stable). +See Sections 8.1 and 8.2 for information on study drug procurement, storage, +preparation, handling and destruction information. + +5.2 + +Dosing and Administration +5.2.1 + +Fulvestrant (Arm A and Arm B) + +Induction Phase: +Cycle 1 (28 day cycle) +Patients will receive fulvestrant 500 mg IM (two-250 mg injections each dose) +on day 1 and 15. +Note: Cycle 1 is the only time fulvestrant is given on day 15. If patient +previously received one cycle of fulvestrant (day 1 and day 15) prior to study +entry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500 +mg on day 1 only. +Cycle 2, and thereafter (28 day cycles) +Patients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of +all subsequent cycles for a maximum of 12 cycles. +Continuation Phase: +Patients with no evidence of disease progression after completing 12 cycles are +unblinded and continue fulvestrant alone (if originally randomized to placebo) or in +combination with everolimus (if originally randomized to everolimus) at the same dose +and schedule until progression of disease or unacceptable toxicity. + +44 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Fulvestrant will be obtained from commercial pharmacy stock. + +5.2.2 + +Everolimus or Placebo (Arm A and Arm B) + +• + +The study drug everolimus/placebo will be self-administered (by the patients +themselves). The local investigator will instruct the patient to take the study drug +exactly as specified in the protocol. Everolimus/placebo should be administered +orally once daily, preferably in the morning, at the same time every day with or +without food. Everolimus/placebo tablets should be swallowed whole with a glass +of water. The tablets must not be chewed or crushed. In cases where tablets +cannot be swallowed, the tablets should be disintegrated in water just prior to +being taken. Approximately 30 mL (2 tablespoons) of water should be put into a +glass. The tablets should then be added and the contents stirred gently (for a +maximum of 7 minutes) until the tablets are disintegrated. The contents should +then be drunk. If the patient vomits after taking the study drug, they should not +take another tablet that day. If the patient forgets to take the medication and +remembers by 10 PM, they may take the dose. Otherwise, skip that dose and +begin as usual the next day. + +• + +Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or +unacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy +(including guidelines for treatment beyond Cycle 12). + +• + +If vomiting occurs, no attempt should be made to replace the vomited dose. + +• + +All dosages prescribed and dispensed to the patient and all dose changes during +the study must be recorded. + +• + +PrECOG, or their designee, will be responsible for blinding, drug randomization, +and management of the electronic interactive web registration (IWR) system. Both +tablets will be blinded and identified by kit number only. The IWR system will +assign the proper kit to the patient based on the patient randomization. Conditions +for study drug will be described on the medication label. + +• + +Both everolimus and placebo will be provided by Novartis. Everolimus is +formulated as tablets for oral administration of 5 mg strength. Both placebo and +everolimus tablets are blister-packed under aluminum foil in units of 10 tablets per +blister card, which should be opened only at the time of administration as drug is +both hygroscopic and light-sensitive. + +• + +Dose modifications should be made prior to dose calculation at the beginning of +each cycle and reasons recorded in source documents and on appropriate case +report forms. + +45 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.3 + +Dose Modifications and Toxicity Management +5.3.1 + +Dose Modifications General Guidelines for Everolimus/ +Placebo + +CTCAE term (AE description) and grade: The descriptions and grading scales found +in the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) +Version 4.0 will be utilized for AE reporting. All appropriate treatment areas should +have access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 +can be downloaded from the CTEP web site (http://ctep.cancer.gov). +All appropriate treatment areas should have access to a copy of the CTEP CTCAE +Version 4.0. (see Appendix E). +Dose modifications for all drugs will be made using the general guidelines below. +• + +All dose reductions are permanent. Fulvestrant will not be dose reduced. + +• + +Regardless of the reason for holding any study drug treatment, the maximum +allowable length of treatment interruption is ≤ 3 weeks. If the delivery of any study +drug due to toxicity is delayed for more than 3 weeks, that drug should be +permanently discontinued. + +• + +No more than 2 dose reductions for everolimus/placebo will be allowed. Further +need for dose reduction will result in discontinuation of that drug. + +• + +If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least +weekly until recovery to treatment levels, or as indicated in the dose modification +tables. + +• + +Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease +progression. + +• + +In unusual circumstances where fulvestrant must be discontinued prior to disease +progression due to intolerable fulvestrant-associated toxicity, the Medical Monitor +should be contacted. + +Table 5-0 +Everolimus or Placebo Dose Level Modification Guidelines +Everolimus/Placebo + +Fulvestrant + +Starting dose + +10 mg daily +(two- 5 mg tablets) + +500 mg + +Dose Level -1 + +5 mg daily + +No reduction + +Dose Level -2 + +5 mg every other day + +No reduction + +46 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Table 5-1 +Non-Hematological Criteria for Dose-Modification in Case of Suspected +Everolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus +or Placebo Treatment +Adverse Event + +Action + +Non Hematological +Reactivation of HBV or HCV flare + +Please refer to Table 5-4 and Table 5-5. + +Non-Infectious Pneumonitis + +Please refer to Table 5-6. + +AST or ALT elevation + +Maintain current dose level. + +Grade 1 (>ULN - 3.0x ULN) +Grade 2 (>3.0 - 5.0x ULN) +AST or ALT elevation +Grade 3 (>5.0 - 20.0 ULN)* + +Interrupt everolimus administration until resolution to ≤ grade 1 +(or ≤ grade 2 if baseline values were within the range of grade +2). If resolution occurs ≤ 7 days, everolimus should be re-started +at the dose level prior to interruption. +If resolution takes >7 days, or if event recurs within 28 days, +hold everolimus until recovery to ≤ grade 1 or baseline grade/ +value and reintroduce everolimus at one dose level lower, if +available. + +AST or ALT elevation +Grade 4 (>20x ULN)* + +Intolerable Grade 2 mucositis +(see Section 5.3.2.5) + +Interrupt everolimus administration until resolution to ≤ grade 1 +(or ≤ grade 2 if baseline values were within the range of grade +2). If resolution occurs ≤ 7 days, everolimus should be re-started +at one dose level lower. If resolution takes >7 days, discontinue +everolimus. +Interrupt everolimus administration until resolution to ≤ grade 1 +or baseline grade/value. +If resolution occurs within ≤ 7 days, everolimus should be restarted at the dose level prior to interruption. +If resolution takes >7 days, or if event recurs within 28 days, +hold everolimus until recovery to ≤ grade 1 or baseline grade/ +value and reintroduce everolimus at one dose level lower, if +available. +Patients will be withdrawn from the study if they fail to recover to +≤ grade 1 or baseline grade/value within 21 days. + +Grade 3 AE, except: +hyperglycemia or +hypertriglyceridemia or +hypercholesterolemia +(see Section 5.3.2.7) + +Interrupt everolimus administration until resolution to ≤ grade 1 +or baseline grade/value. +Reintroduce everolimus at one dose level lower, if available. +Patients will be withdrawn from the study if they fail to recover to +≤ grade 1 or baseline grade/value within 21 days. + +47 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 +Any other Grade 4 + +Hold everolimus until recovery to grade ≤ 1 or baseline value. +Reintroduce everolimus at one dose level lower, if available. + +Grade 3 or 4 clinical liver failure +(asterixis or encephalopathy/ +coma) + +Discontinue everolimus. + +Recurrence of intolerable Grade 2 +mucositis or Grade 3 event after +dose reduction + +Reduce dose to the next lower dose level, if available. The +lowest possible dose level of everolimus is 5 mg every other +day. Below this level, everolimus must be discontinued. + +Recurrence of Grade 4 after +dose reduction + +Discontinue everolimus. + +Any non-hematologic toxicity +requiring +interruption +of +everolimus for >21 days + +Discontinue everolimus. + +* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5). + +Table 5-2 +Hematological Criteria for Dose-Modification in Case of Suspected Everolimus +or Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo +Adverse Event + +Action + +Hematological +Grade 2 thrombocytopenia +9 + +No action. + +(platelets <75, ≥ 50 x 10 /L) +Grade 3 thrombocytopenia + +Interrupt everolimus until resolution to grade ≤1 + +(platelets <50, ≥ 25 x 10 /L) + +If resolution occurs ≤ 7 days, reintroduce everolimus at the +dose level prior to interruption. + +9 + +If resolution occurs >7 days, or event occurs within 28 days, +reintroduce everolimus at one dose level lower, if available. +Grade 4 thrombocytopenia +9 + +(platelets <25 x 10 /L) +Grade 3 neutropenia or anemia +9 + +(neutrophil <1, ≥ 0.5 x 10 /L) + +Interrupt everolimus until recovery to grade ≤ 1. Then +reintroduce everolimus at one dose level lower, if available. +Interrupt everolimus until resolution to grade ≤1 or baseline +value +If AE resolution occurs ≤ 7 days, reintroduce everolimus at +the same dose level. +If AE resolution occurs >7 days, or event occurs within 28 +days, reintroduce everolimus at one dose level lower, if +available. + +48 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 +Grade 4 neutropenia or anemia + +Interrupt everolimus until recovery to grade ≤ 1 or baseline +value. Reintroduce everolimus at one dose level lower, if +available.* + +Febrile neutropenia + +Interrupt everolimus until resolution to grade ≤ 1 (or baseline +value) and no fever. Reintroduce everolimus at one dose +level lower, if available.* + +Recurrence of Grade 3 toxicity after +dose reduction + +Reduce dose to the next lower dose level, if available. The +lowest possible dose level of everolimus is 5 mg every other +day. Below this level, everolimus must be discontinued. + +*Recurrence of Grade 4 toxicity +(including febrile neutropenia) after +dose reduction + +Discontinue everolimus. + +*Any hematologic toxicity requiring +everolimus interruption for >21 +days + +Discontinue everolimus. + +5.3.2 + +Common Adverse Events Associated with Everolimus + +The data described below reflect exposure to everolimus (n= 274) and placebo +(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell +carcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for ≥ 4 +months. The median age of patients was 61 years (range 27 to 85). The most +common adverse reactions (incidence ≥ 10%) were stomatitis, rash, fatigue, asthenia, +diarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral +edema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common +grade 3-4 adverse reactions (incidence ≥ 2%) were infections, stomatitis, fatigue, and +pneumonitis. +The median duration of blinded study treatment was 141 days (range 19 to 451) for +patients receiving everolimus and 60 days (range 21 to 295) for those receiving +placebo. The rates of treatment-emergent adverse reactions resulting in permanent +discontinuation were 7% and 0% for the everolimus and placebo treatment groups, +respectively. Most treatment-emergent adverse reactions were grade 1 or 2 in +severity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39% +versus 7% of patients receiving everolimus and placebo, respectively. Deaths due to +acute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were +observed on the everolimus arm. +Everolimus has immunosuppressive properties and may predispose patients to +bacterial, fungal, viral or protozoan infections, including infections with opportunistic +pathogens. Localized and systemic infections, including pneumonia, other bacterial +infections, invasive fungal infections, such as aspergillosis or candidiasis and viral +infections including reactivation of hepatitis B virus, have been described in patients +taking everolimus. Some of these infections have been severe (e.g. leading to +respiratory or hepatic failure) and occasionally have had a fatal outcome. + +49 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Physicians and patients should be aware of the increased risk of infection with +everolimus. Treat pre-existing infections prior to starting treatment with everolimus. +While taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis +of infection is made, institute appropriate treatment promptly and consider interruption +or discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is +made, discontinue everolimus and treat with appropriate antifungal therapy. +Reactivation of Hepatitis B (HBV) has been observed in patients with cancer +receiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been +seen in this setting with everolimus. Use of antivirals during anti-cancer therapy has +been shown to reduce the risk of Hepatitis B virus reactivation and associated +morbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and +risk factors must be done for all patients at screening, with testing performed prior to +the first dose of everolimus. +Hypersensitivity reactions manifested by symptoms including, but not limited to, +anaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the +airways or tongue, with or without respiratory impairment) have been observed with +everolimus. +Elevations of serum creatinine, usually mild, have been reported in clinical trials. +Monitoring of renal function, including measurement of blood urea nitrogen (BUN) or +serum creatinine, is recommended prior to the start of everolimus therapy and +periodically thereafter. +Decreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in +clinical trials. Monitoring of complete blood count is recommended prior to the start of +everolimus therapy and periodically thereafter. +The use of live vaccines and close contact with those who have received live +vaccines should be avoided during treatment with everolimus. +Hypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have +been reported as serious adverse reactions. Electrolytes should be monitored in +patients treated with everolimus. +Table 5-1 and Table 5-2 provide general recommendations for the management of +patients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy. +More detailed information regarding everolimus reported suspected toxicities and +individual cases are provided in the Investigator’s Brochure. +5.3.2.1 + +Management of Hepatitis Reactivation/Flare + +In cancer patients with hepatitis B, whether carriers or in chronic state, use of +antivirals during anticancer therapy has been shown to reduce the risk of hepatitis B +virus (HBV) reactivation and associated HBV morbidity and mortality.54 + +50 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.3.2.2 + +Monitoring and +Reactivation + +Prophylactic + +Treatment + +for + +Hepatitis + +B + +Table 5-3 provides details of monitoring and prophylactic therapy according to the +baseline results of viral load and serologic markers testing. +Table 5-3 +Action to be Taken for Positive Baseline Hepatitis B Results + +Test + +Result + +Result + +Result + +Result + +Result + +HBV-DNA + ++ + ++ or - + +- + +- + +- + +HBsAg + ++ or - + ++ + +- + +- + +- + +HBsAb + ++ or - + ++ or - + ++ + ++ or - + +- + +and no prior HBV +vaccination +HBcAb + ++ or - + +Recommendation + ++ or - + ++ or - + +or + with prior +HBV vaccination ++ + +No prophylaxis + +Prophylaxis treatment should be +started 1-2 weeks prior to first dose of +study drug + +Monitor HBV-DNA approximately +every 3-4 weeks + +No specific +action + +Monitor HBV-DNA approximately +every 4-8 weeks + +Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of +study drug. +For hepatitis B reactivation, definition and management guidelines see Table 5-4 +Guidelines for Management of Hepatitis B. + +51 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Table 5-4 +Guidelines for Management of Hepatitis B +HBV Reactivation (with or without clinical signs and symptoms)* +For patients with baseline +results: +Positive HBV-DNA + +≤ baseline HBV-DNA levels + +Positive HBsAg +-------------------------------------Reactivation is defined as: +Increase of 1 log in HBVDNA relative to baseline +HBV-DNA value OR new +appearance of measurable +HBV-DNA +For patients with baseline +results: +HBV-DNA + +AND +Interrupt study drug administration until resolution: + +OR + +Negative +HBsAg + +Treat: Start a second antiviral + +and + +If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already +receiving the lowest dose of study drug according to the protocol, the +patient should restart at the same dose after resolution. Both antiviral +therapies should continue at least 4 weeks after last dose of study +drug. +If resolution occurs >21 days, patients should discontinue study +drug but continue both antiviral therapies at least 4 weeks after last +dose of study drug. +Treat: Start first antiviral medication +AND +Interrupt study drug administration until resolution: +≤ baseline HBV-DNA levels + +AND +Positive HBsAb (with no +prior history of vaccination +against HBV), OR positive +HBcAb +------------------------------------Reactivation is defined as: +New +appearance +measurable HBV-DNA + +of + +If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already +receiving the lowest dose of study drug according to the protocol, the +patient should restart at the same dose after resolution. Antiviral +therapy should continue at least 4 weeks after last dose of study +drug. +If resolution occurs >21 days, patients should discontinue study +drug but continue antiviral therapy at least 4 weeks after last dose of +study drug. + +* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version +4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening +by the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE +Version 4.0 Metabolic Laboratory/Other: Viral Reactivation). + +5.3.2.3 + +Monitoring for Hepatitis C Flare + +The following two categories of patients should be monitored every 4-8 weeks for +HCV reactivation: +• + +Patients with detectable HCV RNA-PCR test at baseline. +52 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +• + +Patients known to have a history of HCV infection, despite a negative viral load +test at baseline (including those that were treated and are considered ‘cured’). + +For definition of hepatitis C flare and the management guidelines, see Table 5-5 +Guidelines for Management of Hepatitis C. +Table 5-5 +Guidelines for Management of Hepatitis C +HCV Flare* +For patients with baseline results: + +Discontinue study drug. + +Detectable HCV-RNA: +HCV Flare is defined as: +˃2 log10 IU/mL increase in HCV-RNA +AND +ALT elevation ˃5x ULN or 3x baseline level, +whichever is higher +Discontinue study drug. + +For patients with baseline results: +Knowledge of past hepatitis C infection +with no detectable HCV-RNA: +HCV Flare is defined as: +New appearance of detectable HCV-RNA +AND +ALT elevation ˃5x ULN or 3x baseline level, +whichever is higher + +* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0. +Metabolic Laboratory/Other: Viral Flare), unless considered life threatening by the +investigator; in which case they should be recorded as grade 4 (CTEP CTCAE +Version 4.0 Metabolic Laboratory/Other: Viral Flare). + +5.3.2.4 + +Management of Skin Toxicity + +For patients with grade 1 toxicity, no specific supportive care is usually needed or +indicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity +may be treated with the following suggested supportive measures at the discretion of +the investigator: oral minocycline, topical tetracycline, topical clindamycin, topical +silver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical +corticosteroids, or pimecrolimus. + +53 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.3.2.5 + +Management of Stomatitis/Oral Mucositis/Mouth Ulcers + +Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with +gastrointestinal morbidity associated with mouth/dental infections, irritation of +esophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing +stomatitis/mucositis must be monitored even more closely. Patients should be +instructed to report the first onset of buccal mucosa irritation/reddening to their study +physician immediately. +Suggested prophylactic treatment for prevention of stomatitis/mucositis: +a) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon +baking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not +needed); do not eat or drink anything for 10 minutes after rinsing. +b) Use 10 mL prescribed “miracle mouth wash’’ QID (swish and spit). For 16-ounce +recipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone, +and 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes +after the baking soda/salt rinse before using “miracle mouthwash’’.55 +Stomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local +supportive care. Please note that investigators in earlier trials have described the oral +toxicities associated with everolimus as mouth ulcers, rather than mucositis or +stomatitis. If your examination reveals mouth ulcers rather than a more general +inflammation of the mouth, please classify the adverse event as such. Please follow +the paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers: +1. For mild toxicity (Grade 1), use conservative measures as noted above, baking +soda/salt mouth rinse and “miracle mouth wash”. +2. For more severe toxicity (Grade 2 in which case patients have pain but are able to +maintain adequate oral alimentation, or Grade 3 in which case patients cannot +maintain adequate oral alimentation), the suggested treatments are: +In addition to baking soda/salt mouth rinse and “miracle mouth wash” +above, topical analgesic mouth treatments (e.g., local anesthetics such as +benzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol) +with or without topical corticosteroids, such as triamcinolone oral paste 0.1% +(Kenalog in Orabase®) or Periogard® oral rinse. +3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to +worsen mouth ulcers. It is preferable to avoid these agents. Alcohol–containing +rinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid +acidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather +than hot.55 +4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In +particular, systemic imidazole antifungal agents (ketoconazole, fluconazole, +itraconazole, etc.) should be avoided in all patients due to their strong inhibition of +everolimus metabolism, thereby leading to higher everolimus exposures. +Therefore, topical antifungal agents are preferred if an infection is diagnosed. +Similarly, antiviral agents such as acyclovir should be avoided unless a viral +infection is diagnosed. +Note: Stomatitis/oral mucositis should be appropriately graded using the functional +grading given on the CTEP CTCAE Version 4.0. + +54 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.3.2.6 + +Management of Diarrhea + +Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with +supportive care such as loperamide, initiated at the earliest onset (for example 4 mg +orally followed by 2 mg orally every 2 hours until resolution of diarrhea). +5.3.2.7 + +Management of Hyperlipidemia and Hyperglycemia + +Treatment of hyperlipidemia should take into account the pre-treatment status and +dietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L) +or grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated +with a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin, +pravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to +diet. +Note: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is +associated with an increased risk of a rare but serious skeletal muscle toxicity +manifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK) +levels and myoglobinuria, acute renal failure and sometimes death. The risk versus +benefit of using this therapy should be determined for individual patients based on +their risk of cardiovascular complications of hyperlipidemia. +Hyperglycemia has been reported in clinical trials. Monitoring of fasting serum +glucose is recommended prior to the start of everolimus therapy and periodically +thereafter. Optimal glycemic control should be achieved before starting trial therapy. +5.3.2.8 + +Management of Non-Infectious Pneumonitis + +Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in +patients taking everolimus. Some of these have been severe and on rare occasions, +a fatal outcome was observed. +A diagnosis of non-infectious pneumonitis should be considered in patients +presenting with non-specific respiratory signs and symptoms such as hypoxia, pleural +effusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations. +Patients should be advised to report promptly any new or worsening respiratory +symptoms. +Patients who develop radiological changes suggestive of non-infectious pneumonitis +and have few or no symptoms may continue everolimus therapy without dose +alteration. If symptoms are moderate (Grade 2), consideration should be given to +interruption of therapy until symptoms improve. The use of corticosteroids may be +indicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade +1 or better. +For cases where symptoms of non-infectious pneumonitis are severe (Grade 3), +everolimus therapy should be discontinued and the use of corticosteroids may be +indicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated +at a reduced dose depending on the individual clinical circumstances. + +55 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +For non-infectious pneumonitis definition and management guidelines, see Table 5-6 +Management of Non-Infectious Pneumonitis. +Table 5-6 +Management of Non-Infectious Pneumonitis +Worst Grade +Pneumonitis + +Management of +Pneumonitis + +Required Investigations + +therapy + +Everolimus Dose +Adjustment + +Grade 1 + +CT scans with lung windows. + +No specific +required + +is + +No dose adjustment required. +Initiate appropriate monitoring. + +Grade 2 + +CT scan with lung windows. +Consider pulmonary function +testing includes: spirometry, +DLCO, and room air O2 +saturation at rest. Consider a +bronchoscopy +with +biopsy +and/or BAL. Monitoring at each +visit until return to ≤ grade 1. +Return to initial monitoring +frequency if no recurrence. + +Symptomatic only. +Consider +corticosteroids +and/or other supportive +therapy if symptoms are +troublesome. + +Rule out infection and consider +interruption of everolimus until +symptoms improve to Grade ≤ +1. +Re-initiate everolimus at one +dose level lower. +Discontinue +everolimus +if +failure to recover within ≤ 21 +days. + +Grade 3 + +CT scan with lung windows and +pulmonary +function +testing +includes: spirometry, DLCO, +and room air O2 saturation at +rest. Monitoring at each visit +until return to ≤ grade 1. Return +to initial monitoring frequency if +no recurrence. Bronchoscopy +with biopsy and/or BAL is +recommended. + +Consider corticosteroids if +infective origin is ruled out. +Taper +as +medically +indicated. + +Rule out infection and interrupt +everolimus until symptoms +improve to Grade ≤ 1. +Consider re-initiating everolimus at one dose level lower. +Discontinue +everolimus +if +failure to recover within ≤ 21 +days. + +Grade 4 + +CT scan with lung windows and +required pulmonary function +testing, if possible, includes: +spirometry, DLCO, and room air +O2 saturation at rest. Monitoring +at each visit until return to ≤ +grade 1. Return to initial +monitoring frequency if no +recurrence. Bronchoscopy with +biopsy +and/or +BAL +is +recommended if possible. + +Consider corticosteroids if +infective origin is ruled out. +Taper +as +medically +indicated. + +Rule +out +infection +discontinue everolimus. + +All interruptions or changes to study drug administration must be recorded. +It will be documented whether or not each patient completed the clinical study. If for +any patient either study treatment or observations were discontinued the reason will +be recorded. + +5.3.3 + +Concomitant Therapies + +Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the +local investigator. At each visit, the investigator will ask the patient about any new +medications he/she is or has taken after the start of the study drug. + +56 + +and + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Concomitant medications/significant non-drug therapies taken ≤ 28 days prior +to start and after start of study drug, including physical therapy and blood +transfusions, should be reviewed. + +5.3.4 + +Prohibited Therapies and Restrictions + +The following restrictions apply during the entire duration of the study: +• + +No other investigational therapy should be given to patients. + +• + +No anticancer agents other than the study medication should be given to patients, +with the following exceptions: +o +o + +Bisphosphonates, Zometa, or Xgeva for bone metastases +a GnRH analog is permitted if the patient had progressive disease on a GnRH +analog plus a SERM or an AI; the GnRH analog may continue but the SERM +or AI must be discontinued. + +• + +If any other anticancer agents are required for a patient then the patient must first +be withdrawn from the study. + +• + +Concurrent radiation therapy is prohibited, however palliative radiotherapy may be +considered on a case by case basis after discussion with the Study Chair. + +• + +Patients must not be receiving chronic, systemic treatment with corticosteroids or +another immunosuppressive agent greater than or equal to 5 mg prednisone or its +equivalent daily. Topical or inhaled corticosteroids are allowed. + +• + +The use of live vaccines and close contact with those who have received live +vaccines should be avoided during treatment with everolimus. Examples of live +vaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG, +yellow fever, varicella and TY21a typhoid vaccines. + +• + +It is highly recommended that patients with positive HBV-DNA or HBsAg are +treated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug +(see Table 5-3). + +• + +The antiviral treatment should continue throughout the entire study period and for +at least 4 weeks after the last dose of study drug. + +• + +Patients on antiviral prophylaxis treatment or positive HBV antibodies should be +tested for HBV-DNA according to study visit schedule. + +• + +Oral contraceptives in preclinical and clinical data have shown everolimus to have +CYP3A4 inhibitory activity rather than induction activity, induction of metabolism +of contraceptive hormones by everolimus is unlikely. Consequently, administration +of everolimus should not reduce the efficacy of oral contraceptives. + +• + +Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use +should be avoided. + +57 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.3.5 +5.3.5.1 + +Administration of Everolimus and CYP3A4 Inhibitors/ +Inducers + +Inhibitors of CYP3A4 and/or PgP + +Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal +wall. +Therefore, the following are recommended: +Co-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole, +ritonavir) or P-glycoprotein (PgP) should be avoided. +Co-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole) +or PgP inhibitors should be used with caution. If a patient requires co-administration +of moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5 +mg every other day. Additional dose reductions to every other day may be required to +manage toxicities. If the inhibitor is discontinued, the everolimus dose should be +returned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor +after a washout period of 2-3 days. +Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use +should be avoided. +Refer to Appendix C Table 15-0 for list of medications known to induce/inhibit +CYP3A4 and Table 15-1 for a list of medications known to inhibit PgP. +5.3.5.2 + +Inducers of CYP3A4 and/or PgP + +Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin, +rifabutin, phenobarbital, St. John’s Wort). If a patient requires co-administration of +strong CYP3A4 inducers, an increase in the dose of everolimus up to twice the +currently used daily dose should be considered, 5 mg increments. Enzyme induction +usually occurs within 7-10 days; therefore everolimus dose should be increased by +one increment 7 days after the start of the inducer therapy. If no safety concerns are +seen within the next 7 days, the dose can be increased again one additional +increment up to a maximum of twice the daily dose used prior to initiation of the +strong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient +requiring co-administration of strong CYP3A4 inducers will be done at the discretion +of the treating investigator. +This dose adjustment of everolimus is intended to achieve similar AUC to the range +observed without inducers. However, there are no clinical data with this dose +adjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is +discontinued the everolimus dose should be returned to the dose used prior to +initiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list +of medications known to induce CYP3A4 and Table 15-1 for a list of medications +known to induce PgP. +Oral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no +interaction with everolimus is expected. However, drug-drug interaction studies +between macrolide antibiotics and warfarin have produced mixed outcomes and the +disparity in these findings has led to the conclusion that multiple factors may alter the + +58 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +clearance of warfarin. The co-administration of everolimus and oral anticoagulants is +possible but should be subject to verification of coagulation (INR) once steady state is +reached (after one week’s treatment). +A comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors, +inducers, and substrates can be found at: +http://medicine.iupui.edu/clinpharm/ddis/table.aspx. This +revised and should be checked frequently for updates. + +5.4 + +website + +is + +continually + +Supportive Care + +All supportive measures consistent with optimal patient care will be given throughout +the study. +The clinical tolerance of the patient, the overall tumor response, and the medical +judgment of the investigator will determine if it is in the patient’s best interest to +continue or discontinue treatment. If treatment is discontinued due to any toxicity, the +patient must be followed to monitor duration of toxicity, response and time to +progression or survival and initiation of any new systemic therapy. + +5.5 + +Duration of Therapy + +CR, PR, or SD patients will continue therapy per their induction arm randomized +assignments until evidence of progressive disease, unacceptable toxicity occurs, or +for a total of 12 cycles (Induction Phase). Patients with no evidence of progressive +disease who remain on study after completing 12 cycles will be unblinded and +proceed to the Continuation Phase. Patients in the Continuation Phase should +continue to receive fulvestrant alone (if originally randomized to placebo) or in +combination with everolimus (if originally randomized to everolimus) at the same dose +and schedule until disease progression or unacceptable toxicity. +Protocol therapy will be discontinued for progressive disease at any time. Patients are +free to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe +administration of study drugs. +Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease +progression. In unusual circumstances where fulvestrant must be discontinued prior +to disease progression due to intolerable fulvestrant-associated toxicity, the medical +monitor should be contacted. All patients who have discontinued protocol therapy will +be followed for survival and for progression if protocol therapy was discontinued +because of toxicity or for other reasons. All surviving patients who have discontinued +induction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be +followed for 30 days for study drug related (fulvestrant and/or everolimus/placebo) +toxicities to ≤ grade 1 (or if >grade 1, event must be permanent and stable). + +59 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +5.6 + +Withdrawal of Patients from Study + +Patients MUST be discontinued from study therapy AND be withdrawn from the study +for the following reasons: +• + +Withdrawal of the patient’s consent (patient’s decision to withdraw for any reason) + +• + +Termination of the study by PrECOG + +• + +Any clinical adverse event, laboratory abnormality or intercurrent illness which, in +the opinion of the investigator, indicates that continued participation in the study is +not in the best interest of the subject + +• + +Inability to comply with protocol + +• + +Discretion of the investigator + +• + +Disease progression (patient will continued to be followed for survival) + +All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5. +If a subject is withdrawn before completing the study, the reason for withdrawal must +be entered on the appropriate case report form. + +60 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +6 + +Measurement of Effect + +6.1 + +Antitumor Effect- Solid Tumors + +For the purposes of this study, patients should be re-evaluated for response every 12 +weeks, +/- 1 week. All baseline evaluations should be performed as closely as +possible to the beginning of treatment and never more than four weeks before +randomization. +Response and progression will be evaluated in this study using the new international +criteria proposed by the revised Response Evaluation Criteria in Solid Tumors +(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional +measurement) of the tumor lesions and the shortest diameter in the case of malignant +lymph nodes are used in the RECIST criteria. + +6.1.1 + +Definitions + +Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their +first treatment with fulvestrant and everolimus/placebo. All patients will be followed for +30 days for toxicity after the last dose of study therapy (fulvestrant and/or +everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1) attributed to study +therapy, whichever is longer (or if >grade 1, event must be permanent and stable). +Evaluable for objective response: Only those patients who have measurable disease +present at baseline, have received at least one cycle of therapy, and have had their +disease re-evaluated will be considered evaluable for response. These patients will +have their response classified according to the definitions stated below. (Note: +Patients who exhibit objective disease progression prior to the end of Cycle 1 will also +be considered evaluable.) +Evaluable non-target disease response: Patients who have lesions present at +baseline that are evaluable but do not meet the definitions of measurable disease, +have received at least one cycle of therapy, and have had their disease re-evaluated +will be considered evaluable for non-target disease. The response assessment is +based on the presence, absence, or unequivocal progression of the lesions. + +6.1.2 + +Disease Parameters + +Measurable lesions: are defined as those that can be accurately measured in at least +one dimension (longest diameter in the plane of measurement) is to be recorded with +a minimum size of: +• + +≥ 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung) + +• + +≥ 10 mm with CT scan (irrespective of scanner type) and MRI (no less than +double the slice thickness and a minimum of 10 mm) + +• + +≥ 10 mm with calipers by clinical exam when superficial + +All tumor measurements must be recorded in millimeters (or decimal fractions of +centimeters). + +61 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Note: Tumor lesions that are situated in a previously irradiated area, or in an area +subjected to other loco-regional therapy, are usually not considered measurable +unless there has been demonstrated progression in the lesion. +Malignant lymph nodes: to be considered pathologically enlarged and measurable, a +lymph node must be ≥ 15 mm in short axis (perpendicular to longest diameter) when +assessed by CT scan (CT scan slice thickness recommended to be no greater than 5 +mm). At baseline and in follow-up, only the short axis will be measured and followed. +Non-measurable lesions: all other lesions (or sites of disease), including small lesions +(longest diameter <10 mm or pathological lymph nodes with ≥ 10 to <15 mm short +axis), are considered non-measurable disease. Leptomeningeal disease, ascites, +pleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast +disease, and abdominal masses/organomegaly (not followed by CT or MRI), are +considered as non-measurable. +Note: Cystic lesions that meet the criteria for radiographically defined simple cysts +should not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts. +‘Cystic lesions’ thought to represent cystic metastases can be considered as +measurable lesions, if they meet the definition of measurability described above. +However, if non-cystic lesions are present in the same patient, these are preferred for +selection as target lesions. +Lytic bone lesions, with an identifiable soft tissue component, evaluated by CT or +MRI, can be considered as measurable lesions if the soft tissue component otherwise +meets the definition of measurability noted above. Blastic bone lesions are nonmeasurable. + +6.1.3 + +Methods for Evaluation of Measurable Disease + +All measurements should be taken and recorded in metric notation using a ruler or +calipers. All baseline evaluations should be performed as closely as possible to the +beginning of treatment and never more than 4 weeks before randomization. +The same method of assessment and the same technique should be used to +characterize each identified and reported lesion at baseline and during follow-up. +Imaging-based evaluation is preferred to evaluation by clinical examination unless the +lesion(s) being followed cannot be imaged but are assessable by clinical exam. +Clinical lesions: Clinical lesions will only be considered measurable when they are +superficial (e.g., skin nodules and palpable lymph nodes) and ≥ 10 mm diameter as +assessed using calipers (e.g., skin nodules). In the case of skin lesions, +documentation by color photography, including a ruler to estimate the size of the +lesion, is recommended. +Chest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they +are clearly defined and surrounded by aerated lung. However, CT is preferable. + +62 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Conventional CT and MRI: This guideline has defined measurability of lesions on CT +scan based on the assumption that CT slice thickness is 5 mm or less. If CT scans +have slice thickness greater than 5 mm, the minimum size for a measurable lesion +should be twice the slice thickness. MRI is also acceptable in certain situations (e.g. +for body scans). +Use of MRI remains a complex issue. MRI has excellent contrast, spatial, and +temporal resolution; however, there are many image acquisition variables involved in +MRI, which greatly impact image quality, lesion conspicuity, and measurement. +Furthermore, the availability of MRI is variable globally. As with CT, if an MRI is +performed, the technical specifications of the scanning sequences used should be +optimized for the evaluation of the type and site of disease. Furthermore, as with CT, +the modality used at follow-up should be the same as was used at baseline and the +lesions should be measured/assessed on the same pulse sequence. It is beyond the +scope of the RECIST guidelines to prescribe specific MRI pulse sequence +parameters for all scanners, body parts, and diseases. Ideally, the same type of +scanner should be used and the image acquisition protocol should be followed as +closely as possible to prior scans. Body scans should be performed with breath-hold +scanning techniques, if possible. +PET-CT: At present, the low dose or attenuation correction CT portion of a combined +PET-CT is not always of optimal diagnostic CT quality for use with RECIST +measurements. However, if the site can document that the CT performed as part of a +PET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast), +then the CT portion of the PET-CT can be used for RECIST measurements and can +be used interchangeably with conventional CT in accurately measuring cancer +lesions over time. Note, however, that the PET portion of the CT introduces additional +data which may bias an investigator if it is not routinely or serially performed. +Ultrasound: Ultrasound is not useful in assessment of lesion size and should not be +used as a method of measurement. Ultrasound examinations cannot be reproduced +in their entirety for independent review at a later date and, because they are operator +dependent, it cannot be guaranteed that the same technique and measurements will +be taken from one assessment to the next. If new lesions are identified by ultrasound +in the course of the study, confirmation by CT or MRI is advised. If there is concern +about radiation exposure at CT, MRI may be used instead of CT in selected +instances. +Endoscopy, Laparoscopy: The utilization of these techniques for objective tumor +evaluation is not advised. However, such techniques may be useful to confirm +complete pathological response when biopsies are obtained or to determine relapse +in trials where recurrence following complete response (CR) or surgical resection is +an endpoint. +Tumor markers: Tumor markers alone cannot be used to assess response. If markers +are initially above the upper normal limit, they must normalize for a patient to be +considered in complete clinical response. Specific guidelines for both CA-125 +response (in recurrent ovarian cancer) and PSA response (in recurrent prostate +cancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has +developed CA-125 progression criteria which are to be integrated with objective +tumor assessment for use in first-line trials in ovarian cancer.60 +63 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Cytology, Histology: These techniques can be used to differentiate between partial +responses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in +tumor types, such as germ cell tumors, where known residual benign tumors can +remain). +The cytological confirmation of the neoplastic origin of any effusion that appears or +worsens during treatment when the measurable tumor has met criteria for response +or stable disease is mandatory to differentiate between response or stable disease +(an effusion may be a side effect of the treatment) and progressive disease. +FDG-PET: While FDG-PET response assessments need additional study, it is +sometimes reasonable to incorporate the use of FDG-PET scanning to complement +CT scanning in assessment of progression (particularly possible 'new' disease). New +lesions on the basis of FDG-PET imaging can be identified according to the following +algorithm: +• +• + +• + +Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of +PD based on a new lesion. +No FDG-PET at baseline and a positive FDG-PET at follow-up: +o If the positive FDG-PET at follow-up corresponds to a new site of disease +confirmed by CT, this is PD. +o If the positive FDG-PET at follow-up is not confirmed as a new site of disease +on CT, additional follow-up CT scans are needed to determine if there is truly +progression occurring at that site (if so, the date of PD will be the date of the +initial abnormal FDG-PET scan). +o If the positive FDG-PET at follow-up corresponds to a pre-existing site of +disease on CT that is not progressing on the basis of the anatomic images, +this is not PD. +FDG-PET may be used to upgrade a response to a CR in a manner similar to a +biopsy in cases where a residual radiographic abnormality is thought to represent +fibrosis or scarring. The use of FDG-PET in this circumstance should be +prospectively described in the protocol and supported by disease-specific medical +literature for the indication. However, it must be acknowledged that both +approaches may lead to false positive CR due to limitations of FDG-PET and +biopsy resolution/sensitivity. + +Note: A ‘positive’ FDG-PET scan lesion means one which is FDG avid with an uptake +greater than twice that of the surrounding tissue on the attenuation corrected image. + +6.1.4 +6.1.4.1 + +Response Criteria + +Evaluation of Target Lesions + +All measurable lesions up to a maximum of 2 lesions per organ and five lesions in +total, representative of all involved organs, should be identified as target lesions and +recorded and measured at baseline. Target lesions should be selected on the basis +of their size (those with the longest diameters), be representative of all involved +organs, but in addition should be those that lend themselves to reproducible repeated +measurements. It may be the case that, on occasion, the largest lesion does not lend +itself to reproducible measurement in which circumstance the next largest lesion +which can be measured reproducibly should be selected. + +64 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions) +for all target lesions will be calculated and reported as the baseline sum diameters. If +lymph nodes are to be included in the sum, then only the short axis is added into the +sum. The baseline sum of the diameters will be used as reference to further +characterize any objective tumor regression in the measurable dimension of the +disease. +Complete Response (CR): Disappearance of all target lesions. Any pathological +lymph nodes (whether target or non-target) must have reduction in short axis to <10 +mm. +Partial Response (PR): At least a 30% decrease in the sum of the diameters of target +lesions, taking as reference the baseline sum diameters. +Progressive Disease (PD): At least a 20% increase in the sum of the diameters of +target lesions, taking as reference the smallest sum on study (this includes the +baseline sum if that is the smallest on study). In addition to the relative increase of +20%, the sum must also demonstrate an absolute increase of at least 5 mm over the +nadir. (Note: the appearance of one or more new lesions is also considered +progression). +Stable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient +increase to qualify for PD, taking as reference the smallest sum diameters while on +study. (Note: a change of 20% or more that does not increase the sum of the +diameters by 5 mm or more is coded as stable disease). +6.1.4.2 + +Evaluation of Non-Target Lesions + +All other lesions or sites of disease including any measurable lesions over and above +the 5 target lesions should be identified as non-target lesions and should also be +recorded at baseline. Measurements of these lesions are not required, but the +presence or absence of unequivocal progression of each should be noted throughout +follow-up. +Complete Response (CR): Disappearance of all non-target lesions and normalization +of tumor marker level. All lymph nodes must be non-pathological in size (<10 mm +short axis). +Note: If tumor markers are initially above the upper normal limit, they must normalize +for a patient to be considered in complete clinical response. +Non-CR/Non-PD: Persistence of one or more non-target +maintenance of tumor marker level above the normal limits. + +lesion(s) + +and/or + +Progressive Disease (PD): Appearance of one or more new lesions and/or +unequivocal progression of existing non-target lesions. Unequivocal progression +should not normally trump target lesion status. It must be representative of overall +disease status change, not a single lesion increase. +When the patient also has measurable disease, there must be an overall level of +substantial worsening in non-target disease such that, even in the presence of SD or +PR in target disease, the overall tumor burden has increased sufficiently to merit +discontinuation of therapy. A modest “increase” in the size of one or more non-target +lesions is usually not sufficient to qualify for unequivocal progression status. The +65 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +designation of overall progression solely on the basis of change in non-target disease +in the face of SD or PR of target disease will therefore be extremely rare. +When the patient only has non-measurable disease, the increase in overall disease +burden should be comparable in magnitude to the increase that would be required to +declare PD for measurable disease: i.e., an increase in tumor burden from “trace” to +“large”, an increase in nodal disease from “localized” to “widespread”, or an increase +sufficient to require a change in therapy. +Although a clear progression of “non-target” lesions only is exceptional, the opinion of +the treating physician should prevail in such circumstances, and the progression +status should be confirmed at a later time by the review panel (or Principal +Investigator). +6.1.4.3 + +Evaluation of New Lesions + +The appearance of new lesions constitutes Progressive Disease (PD). +6.1.4.4 + +Evaluation of Patient’s Best Overall Response + +The best overall response is the best response recorded from the start of the +treatment until disease progression/recurrence (taking as reference for progressive +disease the smallest measurements recorded since the treatment started). The +patient's best response assignment will depend on the achievement of both +measurement and confirmation criteria. + +66 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Table 6-0 +Patients with Measurable Disease (e.g., Target Disease) +Target +Lesions + +Non-Target +Lesions + +New +Lesions + +Overall +Response + +Best Overall Response when +Confirmation is Required* + +CR + +CR + +No + +CR + +Confirmation not required + +CR + +Non-CR/NonPD + +No + +PR + +CR + +Not Evaluated + +No + +PR + +PR + +Non-CR/NonPD/Not +Evaluated + +No + +PR + +SD + +Non-CR/NonPD/Not +Evaluated + +No + +SD + +PD + +Any + +Yes or No + +PD + +Any + +PD** + +Yes or No + +PD + +Any + +Any + +Yes + +PD + +Confirmation not required + +Confirmation not required + +No prior SD, PR or CR + +*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion. +**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as +disease progression. +Note: + +Patients with a global deterioration of health status requiring discontinuation of treatment +without objective evidence of disease progression at that time should be reported as +“symptomatic deterioration”. Every effort should be made to document the objective +progression even after discontinuation of treatment. + +Table 6-1 +Patients with Non-Measurable Disease (e.g., Non-Target Disease) +Non-Target Lesions + +New Lesions + +Overall Response + +CR + +No + +CR + +Non-CR/Non-PD + +No + +Non-CR/Non-PD* + +Not all evaluated + +No + +Not Evaluated + +Unequivocal PD + +Yes or No + +PD + +Any + +Yes + +PD + +*‘Non-CR/Non-PD’ is preferred over ‘stable disease’ for non-target disease since SD is increasingly +used as an endpoint for assessment of efficacy in some trials so to assign this category when no +lesions can be measured is not advised. + +67 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +6.1.5 + +Duration of Response + +Duration of overall response: The duration of overall response is measured from the +time measurement criteria are met for CR or PR (whichever is first recorded) until the +first date that recurrent or progressive disease is objectively documented (taking as +reference for PD the smallest measurements recorded since the treatment started). +The duration of overall CR is measured from the time measurement criteria are first +met for CR until the first date that progressive disease is objectively documented. +Duration of stable disease: Stable disease is measured from the start of the treatment +until the criteria for progression are met, taking as reference the smallest +measurements recorded since the treatment started, including the baseline +measurements. + +6.1.6 + +Progression-Free Survival + +PFS is defined as the duration of time from time of randomization to time of +progression or death, whichever occurs first. A subject who has neither progressed +nor died will be censored on the date of last tumor assessment. + +68 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +7 + +Study Parameters + +TREATMENT MUST BEGIN ≤ 7 WORKING DAYS FROM RANDOMIZATION +Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles) +Procedure + +Pre-Study + +Cycle 1 + +Cycle 1 + +Day 1* + +Day 15 + +Day 1 Each +Subsequent +Cycle* + +Every 12 +weeks + +End of +Induction +Phase + +Continuation + + + +progression or + +End of +Treatment + +unacceptable + +Phase +(until + +toxicity) + +Section 5.6^ + +X + +Informed Consent + +X + +Medical History & Assessment of Baseline +Signs and Symptoms + +X + +Physical Exam + +X + +a + +X + +a + +Vital Signs (Blood Pressure, Heart Rate, +Temperature) and Weight +ECOG Performance Status + +Follow-Up Off +o +Therapy +(every 3 +months for total +of 3 yrs from +date of +randomization) + +a + +Eligibility Assessment + +Concomitant Meds (see Appendix C) + +£ + +a + +X + +a + +X +(includes Ht) +a + +X + +b + +X + +X + +c + +X + +b + +X + +X + +c + +X + +X + +X + +b + +X + +X + +c + +X + +b + +X + +X + +c + +X + +X + +c + +X + +j + +X + +X + +i + +X + +X + +b + +Adverse Events Assessments + +X + +X + +a,i + +i + +Imaging Scans + +X + +X + +PT with INR + +X + +Urinalysis + +X + +CBC with differentials, Platelets + +X + +a + +X + +b + +X + +d + +X + +Serum Creatinine, Electrolytes (K, Na, Cl, +CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), +Alkaline Phosphatase, Total Bilirubin, +Magnesium, Uric Acid. + +X + +a + +X + +b + +X + +X + +Fasting Glucose + +X + +a + +X + +b + +X + +e + +X + +e + +Fasting serum Lipid Profile (triglycerides, +total cholesterol, HDL and LDL) + +X + +a + +X + +b + +X + +e + +X + +e + +X + +j + +i + +a +a + +69 + +c,d + +X + +d + +X + +k + +c + +X + +X + +X + +e + +X + +e + +X + +k + +k +k + +j + +X + +i,m,o + +X + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 +Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles) +Procedure + +Pre-Study + +Cycle 1 + +Cycle 1 + +Day 1* + +Day 15 + +Day 1 Each +Subsequent +Cycle* + +Every 12 +weeks + +End of +Induction +Phase + +Continuation +Phase +(until + + + +progression or + +End of +Treatment + +unacceptable +toxicity) + +Section 5.6^ + +HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR + +(every 3 +months for total +of 3 yrs from +date of +randomization) + +a,f +f,g + +X + +f,h + +X + +X + +HCV RNA-PCR + +X + +PFTs with DLCO as medically indicated + +Follow-Up Off +o +Therapy + +X + +HBV DNA +Study Drug Compliance (Pill Diary) + +£ + +X + +f,g + +X + +f,h + +X + +X + +k +k + +X + +l + +X + +n + +a: ≤ 4 weeks of randomization; if assessments required ≤ 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs). +b: ≤ 7 days prior to the start of C1D1. +c: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends, +bad weather or other unforeseen circumstances will be permitted. +d: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of +hematologic recovery. +e: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of +treatment. +f: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a +positive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or +HBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment +should continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus. +g: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior +to D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions. +h: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered ‘cured’) should have HCV RNAPCR testing performed on ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be +discontinued if HCV flare is confirmed according to the guidance in Table 5-5. +i: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week +(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be +repeated once disease progression is documented. +j: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or +everolimus/placebo) or until ≤ grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last +dose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo. +70 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 +k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone. +Patients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per +labeling guidelines. +l: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase. +m: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed +during the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented +progression. +n: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study). +o: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented. +* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15 +of the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo. +^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant. +£ Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination +with everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to +holidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity. + +71 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +7.1 + +Procedures by Visit + +Written informed consent must be obtained prior to any study required procedures that +would not have been performed as part of normal patient care at the site. + +7.1.1 + +Pre-Study + +Prior to randomization, patients will complete the informed consent process and have all +required protocol assessments completed in order to assess eligibility requirements. All +procedures and an assessment of eligibility should be documented in the patient record. +Within ≤ 4 weeks of randomization to protocol therapy: +• + +Medical history + +• + +Assessment of baseline signs and symptoms + +• + +Physical examination + +• + +Concomitant medication assessment (see Appendix C for list of excluded or +medications requiring monitoring on study) + +• + +Vital signs, including blood pressure, heart rate and temperature, height and weight + +• + +Assessment of ECOG performance status + +• + +Imaging scans for complete disease assessment. Care should be taken to continue +to use the same evaluation method during the study as used for initial evaluation. +See Section 6 for additional details. + +• + +PT with INR + +• + +Urinalysis + +• + +CBC with differential and platelets + +• + +Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, +Magnesium and Uric Acid + +• + +Fasting Glucose + +• + +Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) + +A detailed assessment of hepatitis B/C medical history and risk factors must be done for +all patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a +course of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in +Section 5.3.2.2 and 5.3.2.3). +Testing for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb, +HBcAb and HCV RNA-PCR are required at screening for all patients in the following risk +categories: +o All patients who have lived in Asia, Africa, Central and South America, Eastern +Europe, Spain, Portugal, and Greece. +[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm] + +72 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +o Patients with any of the following risk factors: +• known or suspected past hepatitis B infection +• blood transfusion(s) prior to 1990 +• current or prior IV drug users +• current or prior dialysis +• household contact with hepatitis B infected patient(s) +• current or prior high-risk sexual activity +• body piercing or tattoos +• mother known to have hepatitis B +• history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right +upper quadrant pain. +o Additional patients at the discretion of the investigator + +Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for +all patients in the following risk categories: +o +o +o +o +o +o +o +o + +known or suspected past hepatitis C infection (including patients with past +interferon ‘curative’ treatment) +blood transfusions prior to 1990 +current or prior IV drug users +current or prior dialysis +household contact of hepatitis C infected patient(s) +current or prior high-risk sexual activity +body piercing or tattoos +At the discretion of the investigator, additional patients may also be tested for +hepatitis C. + +Final determination of eligibility and randomization to therapy should be done only after +all assessments are completed. + +7.1.2 + +Induction Phase (fulvestrant + everolimus/placebo) + +Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first +fulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant +doses is given on day 15 of the first cycle only). Note: If patient previously received one +cycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion +Criteria #8, patient should receive fulvestrant 500 mg on day 1 only. +Patients will be assessed continually for toxicity and study continuation. Protocol therapy +doses should be calculated and modified as per Section 5. Assessment of disease for +response should be performed as per Section 6. +One cycle in the Induction Phase is equal to 28 days. Patients are treated for a +maximum of 12 cycles in the Induction Phase. +7.1.2.1 + +Within 7 Days of Cycle 1 Day 1 + +Note: The following assessments do not have to be repeated if the pre-study +assessments were performed within ≤ 7 days of Cycle 1 Day 1. + +73 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +• + +Physical examination + +• + +Concomitant medication assessment (see Appendix C for list of excluded or +medications requiring monitoring on study) + +• + +Vital signs, including blood pressure, heart rate, temperature and weight + +• + +Assessment of ECOG performance status + +• + +Adverse event assessment and dose modifications as necessary (AEs should be +monitored continuously). AE assessment should begin after the first dose of study +medication has been administered. + +• + +CBC with differential and platelets + +• + +Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, +Magnesium and Uric Acid + +• + +Fasting Glucose + +• + +Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) + +• + +Patients on antiviral prophylaxis treatment or positive HBV antibodies should be +tested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 +days) to monitor for re-activation. If re-activation is confirmed, everolimus must be +interrupted or discontinued according to the guidance in Table 5-4. Patients with +positive HCV RNA-PCR results at screening and/or a history of past infection (even if +treated and considered ‘cured’) should have HCV RNA-PCR testing performed on +Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for +flare. Everolimus must be discontinued if HCV reactivation is confirmed according to +the guidance in Table 5-5. + +7.1.2.2 + +Cycle 1 Day 15 + +• + +Physical examination + +• + +Concomitant medication assessment (see Appendix C for list of excluded or +medications requiring monitoring on study) + +• + +Vital signs, including blood pressure, heart rate, temperature, and weight + +• + +Assessment of ECOG performance status + +• + +Adverse event assessment and dose modifications as necessary (AEs should be +monitored continuously). (see Section 5.3 for dose modification guidelines) + +• + +CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity, +CBC with differentia and platelet count will be obtained every 1-3 days until there is +evidence of hematologic recovery. + +• + +Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, +Magnesium and Uric Acid + +• + +Study Drug Compliance (Pill Diary) for everolimus/placebo + +74 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +7.1.2.3 + +Cycle 2 (and each subsequent cycle) Day 1 + +• + +Physical examination + +• + +Concomitant medication assessment (see Appendix C for list of excluded or +medications requiring monitoring on study) + +• + +Vital signs, including blood pressure, heart rate, temperature and weight + +• + +Assessment of ECOG performance status + +• + +Adverse event assessment and dose modifications as necessary (AEs should be +monitored continuously, see Section 5.3 for dose modification guidelines). + +• + +CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity, +CBC with differential and platelet count will be obtained every 1-3 days until there is +evidence of hematologic recovery. + +• + +Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, +Magnesium and Uric Acid + +• + +Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more +frequently as clinically indicated) + +• + +Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2 +Day 1, then every 12 weeks during treatment, and more frequently as clinically +indicated) + +• + +Patients on antiviral prophylaxis treatment or positive HBV antibodies should be +tested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 +days) to monitor for re-activation. If re-activation is confirmed, everolimus must be +interrupted or discontinued according to the guidance in Table 5-4. Patients with +positive HCV RNA-PCR results at screening and/or a history of past infection (even if +treated and considered ‘cured’) should have HCV RNA-PCR testing performed on +Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for +flare. Everolimus must be discontinued if HCV reactivation is confirmed according to +the guidance in Table 5-5. + +• + +Study Drug Compliance (Pill Diary) for everolimus/placebo + +7.1.2.4 + +Every 12 Weeks + +• + +Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction +Phase. Scans should be repeated at the assigned intervals regardless of cycle or +treatment delays. + +• + +Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL +and LDL) to be done every 12 weeks during Induction Phase (and more frequently +as clinically indicated) + +75 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +7.1.3 + +End of Induction Phase End of Treatment + +All patients will have the following assessments completed whether they are moving into +the Continuation Phase or no longer will be receiving treatment and are moving into +Follow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments +should be completed within 30 days of last dose of fulvestrant and before moving from +the Induction Phase into the Continuation Phase or before moving directly into the +Follow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle +12 if the assessments below are completed in order to maintain the 28 day fulvestrant +dosing schedule). +• + +Physical examination + +• + +Concomitant medication assessment (see Appendix C for list of excluded or +medications requiring monitoring on study) + +• + +Vital signs, including blood pressure, heart rate, temperature and weight + +• + +Assessment of ECOG performance status + +• + +Adverse event assessment. All patients will be followed for toxicity assessment for +30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo) +or until resolution to ≤ grade 1 attributed to study therapy (or if >grade 1, event must +be permanent and stable). Serious adverse events >30 days after last dose of +fulvestrant and/or everolimus/placebo are not reported unless the event may be +related to everolimus/placebo. + +• + +Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation +schedule. + +• + +CBC with differential and platelets + +• + +Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, +Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, +Magnesium and Uric Acid + +• + +Fasting Glucose + +• + +Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) + +• + +Study Drug Compliance (Pill Diary) for everolimus/placebo + +Patients in the Continuation Phase should continue to receive fulvestrant alone (if +originally randomized to placebo) or in combination with everolimus (if originally +randomized to everolimus) at the same dose and schedule until disease progression or +unacceptable toxicity. +Patients that are moving from the Induction Phase into Follow-Up Off Therapy should +not receive further investigational therapies for at least 30 days after the last dose of +study drug, if possible, in order to eliminate overlapping toxicity. + +76 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +7.1.4 + +Continuation Phase (fulvestrant +/- everolimus) + +Patients with no evidence of disease progression after 12 cycles of treatment (Induction +Phase) will be unblinded and proceed to the Continuation Phase. Patients in the +Continuation Phase should continue to receive fulvestrant alone (if originally randomized +to placebo) or in combination with everolimus (if originally randomized to everolimus) at +the same dose and schedule until disease progression is documented or unacceptable +toxicity. Once progression is documented, patients will move into Follow-Up Off Therapy. +One cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation +Phase should start 28 days (D29) after the last dose of fulvestrant was given during +Cycle 12 in the Induction Phase. +All adverse events that are related to fulvestrant and/or everolimus will be followed for 30 +days after the last dose of study therapy (fulvestrant and/or everolimus) until ≤ grade 1 +or if the grade is >1, the event must be permanent and stable. +• + +CBC and chemistry may be used to monitor any ongoing toxicities, but are not +required for patients that receive fulvestrant alone. + +• + +Patients who continue fulvestrant in combination with everolimus should periodically +have CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV +RNA-PCR per labeling guidelines. + +• + +Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the +Continuation Phase. + +After the Continuation Phase, serious adverse events >30 days after last dose of +fulvestrant and/or everolimus are not reported unless the event may be related to +everolimus. +7.1.4.1 +• + +Every 12 Weeks + +Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the +Continuation Phase until disease progression is documented. + +7.1.5 + +Follow-Up Off-Therapy + +All patients, including those who discontinue protocol therapy, will be followed for 3 +years from the time of randomization. Patients that did not progress during the Induction +or Continuation Phase will continue to have imaging scans completed every 3 months +until documented progression. Patients will then be followed for survival. Initiation of any +new systemic therapy will also be documented. Patients that have adverse events +related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last +dose of study therapy (fulvestrant and/or everolimus/placebo) until ≤ grade 1 or if the +grade is >1, the event must be permanent and stable. Serious adverse events >30 days +after last dose of fulvestrant and/or everolimus/placebo are not reported unless the event +may be related to everolimus/placebo. + +77 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +8 + +Drug Formulation and Procurement + +8.1 + +Everolimus +8.1.1 + +Packaging and Labeling + +Full instructions for investigator sites and investigational pharmacies will be available in +separate protocol-specific documents. The supply of everolimus or placebo will be +shipped directly to the local investigator. Drug ordering procedures will be provided in +supplemental study materials. +8.1.1.1 + +How Supplied + +Everolimus and an identically appearing placebo will be provided by Novartis. +Everolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are +blister-packed under aluminum foil in units of 10 tablets per blister card, which should be +opened only at the time of administration as drug is both hygroscopic and light-sensitive. +Each tablet contains as inactive ingredients: butylhyroxytoluene/butylated +hydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose, +crospovidone and lactose anhydrous. +Medication labels will comply with US legal requirements and be printed in English. They +will supply no information about the patient. The storage conditions for study drug will be +described on the medication label. + +8.1.2 + +Storage Requirements/Stability + +Everolimus should be stored at room temperature between 20°C to 25°C (68°F to 77°F). +All investigational products must be kept in a secure place under appropriate storage +conditions. A description of the appropriate storage and shipment conditions is specified +on the investigational product label and investigator brochure. The stored study drug +supplies must be accessible to authorized staff only. The storage area must also have +adequate control of temperature in order to maintain stability and potency of study drug +supplies. The tablets should be stored in the original pack until use. For further +information, investigators should refer to the current Investigators Brochure (IB). + +8.1.3 +8.1.3.1 + +Handling, Dispensing and Administration + +Handling + +No special precautions are necessary when handling intact tablets. Avoid contact with +skin and eyes. Wash hands after use. The risk to health in normal handling of tablets is +very low. Exposure to dust from crushed tablets may cause adverse health effects. +8.1.3.2 + +Dispensing + +Drug should be dispensed in original packaging. If other packaging is required by +institutional policy, this procedure will need to be approved by PrECOG, or their +designee, prior to proceeding. The PrECOG Site Contact should be contacted for further + +78 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +instruction. Investigational product records should be kept as per Section 8.1.5 and +institutional policies. +8.1.3.3 + +Administration + +Patients should be instructed to take their assigned, once-a-day oral dose of +everolimus/placebo at the same time each morning. +• + +Everolimus/placebo dose may be taken with or without food. + +• + +Patients should be instructed to swallow the capsules whole and not chew them. + +• + +Vomited doses should not be replaced. + +• + +If the patient forgets to take the medication and remembers by 10 PM, they may take +the dose. Otherwise, skip that dose and begin as usual the next day. + +In cases where tablets cannot be swallowed, the tablets should be disintegrated in water +just prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put +into a glass. The tablets should then be added and the contents stirred gently (for a +maximum of 7 minutes) until the tablets are disintegrated. The contents should then be +drunk. +Patients should be given instructions on correct dosing based on study requirements +and toxicity management (dose modifications). All changes to recommended dosing +regimen/schedule should be documented in the patient record. Documentation of patient +instructions for dosing changes should also be in source records. +Patients should be instructed to record the reason for any missed doses and report to +the investigator at the next visit. If a dose is vomited, that dose should not be replaced, +(and recorded as a vomited dose). +Compliance with therapy will be assessed at the beginning of each cycle. Patients will be +given a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of +study drug as provided by each study site. A copy of the patient diary will be provided to +sites in study materials. +8.1.3.4 + +Special Instructions for Unblinding + +Patients on study therapy and all site study staff will remain blinded as to the assignment +of everolimus or placebo. Patients who have not had progressive disease and remain on +study after 12 cycles are unblinded and continue fulvestrant alone (if originally +randomized to placebo) or in combination with everolimus (if originally randomized to +everolimus) at the same dose and schedule in the Continuation Phase. If an emergency +situation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted. +Emergency Unblinding for Patients during the Induction Phase (within Cycles 1-12): +Unblinding is a serious action that should be restricted in order to limit potential study +bias. The breaking of the blinding code in all cases will render the patient off-protocol. +The Medical Monitor for the study must be involved in the decision to unblind and must +grant approval for unblinding any individual. Requests for unblinding will only be +considered in the event of an emergency or severe adverse reaction where identification + +79 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +of the medication is considered important for the welfare of the patient, and the rationale +for unblinding is applicable to the situation. All patients should be provided emergency +medical care by the treating physician and appropriate therapies for the medical +emergency should be initiated prior to the request for unblinding. +For example, a Serious Adverse Event (SAE) possibly, probably or definitely related to +the study drug occurs during the trial and the treatment of the SAE would be influenced +by whether he/she received everolimus or placebo. Unblinding is typically not necessary +if the medical management of the patient would not be materially altered by knowledge +of the treatment assignment. In the event that accidental unblinding occurs, the Principal +Investigator should report the occurrence promptly to the Medical Monitor and document +the incident in the patient records. All unblinding will be recorded as a protocol deviation. +If a participant is in a life-threatening situation in which knowledge of the treatment is +crucial to care AND the Medical Monitor cannot be reached immediately, the PM should +be contacted to facilitate the unblinding process. A report including the unblinding details +will be generated after the patient has been unblinded and will be sent to the site for +documentation (refer to Study Reference Manual for Unblinding Process). Report +information will include but is not limited to: +• +• +• +• +• + +ID number of the participant whose treatment assignment was unblinded +Date of unblinding and reconciliation of study drug in site and patient records +Reason for unblinding, including initial SAE report +Person responsible for unblinding +List of persons who are unblinded (e.g. study staff) + +8.1.4 + +Side Effects + +The most common adverse reactions (incidence ≥ 10%) reported for everolimus include +stomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation, +vomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea. +The most commonly reported grade 3-4 adverse reactions (incidence ≥ 2%) reported for +everolimus include infections, stomatitis, fatigue, and pneumonitis. + +8.1.5 + +Investigational Product Records at Investigational Site(s) + +Investigational product dispensing record/inventory logs and copies of signed packing +lists must be maintained at the investigational site for everolimus. It is the responsibility +of the Investigator to ensure that a current record of investigational product disposition is +maintained at each study site where investigational product is stored and/or dispensed. +Records must comply with applicable regulations and guidelines, and should include: +• + +Amount received and placed in storage area. + +• + +Amount currently in storage area. + +• + +Label ID number or batch number. + +• + +Dates and initials of person responsible for each investigational product inventory +entry/movement. + +80 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +• + +Amount dispensed to and returned by each patient, including unique patient +identifiers. + +• + +Amount transferred to another area for dispensing or storage. + +• + +Non-study disposition (e.g., wasted, broken). + +• + +Amount returned to manufacturer, if applicable + +• + +Amount destroyed at study site, if applicable + +8.1.6 + +Return and Destruction of Investigational Product + +Investigational product should be maintained at the site for accountability purposes. +Sites will be referred to the study pharmacy manual for instructions regarding the return +or destruction of everolimus study drug supply (site’s drug destruction policy must be +reviewed and approved by PrECOG before any study drug can be destroyed at a site). +Patients will be instructed to return all blister packs (empty or partially used) to the study +center. + +8.2 + +Fulvestrant (Faslodex) +8.2.1 + +Packaging and Labeling + +Fulvestrant is commercially available and approved and is indicated for the treatment of +HR-positive metastatic breast cancer in postmenopausal women whose disease has +returned or progressed following antiestrogen therapy. +Investigators should review the approved Package Insert (PI) (http://www.faslodex.com/ +faslodex-prescribing-info/index.aspx) for full information on storage, handling, +preparation and stability. +Fulvestrant is supplied as: +One clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for +intramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50. +(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will +be required for one dose.) +The syringes are presented in a tray with polystyrene plunger rod and safety needles +(SafetyGlide™) for connection to the barrel. +Each injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and +Benzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release +rate modifier. + +81 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +8.2.2 +8.2.2.1 + +Handling and Dispensing + +Storage Requirements/Stability + +Refrigerate 2°-8°C (36°-46°F). To protect from light, store in the original carton until time +of use. +8.2.2.2 + +Preparation and Administration + +Fulvestrant should be disposed of or destroyed as per written institutional policies and +per recommendations in the current approved Package Insert. To help avoid infectious +diseases due to accidental needle sticks, contaminated needles should not be recapped +or removed, unless there is no alternative or that such action is required by a specific +medical procedure. +WARNING: - Do not autoclave safety needle before use. Hands must remain +behind the needle at all times during use and disposal. +Directions: +(Source: Faslodex® Package Insert 1621903 Rev 12/11) +• Remove the glass syringe barrel from tray and check that it is not damaged +• Remove perforated patient record label from syringe +• Peel open the safety needle outer packaging. +• Break the seal of the white plastic cover on the syringe luer connector to remove the +cover with the attached rubber tip cap (Figure 1). +• Twist to lock the needle to the luer container. +• Remove the needle sheath. Pull shield straight off needle to avoid damaging needle +point. +• Remove excess gas from the syringe. +• Administer intramuscularly slowly in the buttock. Administer injection following +package instruction. For user convenience, the needle ‘bevel up’ position is +orientated to the lever arm (Figure 3). +• Immediately activate needle protection device upon withdrawal from patient by +pushing lever arm completely forward until the tip is fully covered (Figure 2). +• Visually confirm that the lever arm has fully advanced and the needle tip is covered. +If unable to activate, discard immediately into an approved sharps collector. +Activation of the protective mechanism may cause minimal splatter of fluid that may +remain on the needle after injection. For greatest safety, use a one-handed +technique and activate away from self and others. +• If the 250 mg/5 mL formulation is used, repeat the above steps for the second +syringe. After single use, discard in an approved sharps collector in accordance with +applicable regulations and institutional policy. +• Review the official package insert for more information regarding the use of the +SafetyGlide Needle. + +82 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +8.2.3 + +Side Effects + +The most commonly reported adverse experiences in the Faslodex® treatment groups, +regardless of the investigator’s assessment of causality, were gastrointestinal symptoms +(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back +pain, vasodilatation (hot flushes), and pharyngitis. +Injection site reactions with mild transient pain and inflammation were seen with +Faslodex® and occurred in 7% of patients (1% of treatments) given the single 5 mL +injection (predominately European Trial) and in 27% of patients (4.6% of treatments) +given the 2 x 2.5 mL injections (North American Trial). +Other adverse events reported as drug-related and seen infrequently (<1%) include +thromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions +including angioedema and urticaria. Vaginal bleeding has been reported infrequently +(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal +therapy to treatment with Faslodex® If bleeding persists, further evaluation should be +considered. + +83 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +9 + +Statistical Considerations + +The efficacy endpoints will be assessed among all eligible patients who receive protocol +therapy. Safety endpoints will be assessed among all treated patients, regardless of +eligibility. + +9.1 + +Primary Efficacy Endpoint + +The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the +time from randomization to documented disease progression or death. Based on results +from the CONFIRM trial, median PFS among patients with AI-resistant disease on +fulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have +either relapsed while receiving adjuvant therapy with an aromatase inhibitor +(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an +aromatase inhibitor for metastatic disease. (Patients previously treated with two or more +prior cycles of fulvestrant are not eligible. Patients who have received one prior cycle +(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as +they meet other eligibility criteria). Randomization will be 1:1, stratified for balancing +purposes using ECOG performance status (0 vs. 1), presence of measurable disease +(yes vs. no), and prior chemotherapy (yes vs. no). +We hypothesize that the addition of everolimus to fulvestrant will result in an +improvement in median PFS to 9.2 months. A one-sided stratified logrank test with a +type I error rate of 10% will be used to evaluate whether the addition of everolimus +shows promising improvement in PFS relative to fulvestrant alone. To have 90% power +to detect the hypothesized improvement, enrollment of approximately 120 eligible +patients (60 per arm) and full information of 98 events (deaths or progressions) are +required. Allowing up to 10 patients to be ineligible or to not start study treatment, +approximately 130 patients will need to be enrolled. With accrual of approximately 130 +patients in 12 months, the required 98 events are expected to occur approximately 12 +months after accrual is completed. Other endpoints that will be evaluated include clinical +benefit rate (proportion stable or responding for at least 6 months), objective response +rate (CR+PR), time to progression (TTP; defined as the time from randomization until +progression of the disease), and overall survival (OS; defined as the time from +randomization until death or censored at the date of last follow-up). +PFS will be evaluated using the stratified log-rank test described above, as will TTP and +OS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints. +Clinical benefit rate and objective response rates will be compared between arms using +Fisher’s exact tests. 90% exact binomial confidence intervals on the rates will be +provided. + +9.2 + +Safety Analyses + +A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination +arm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each +arm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no +wider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%) +will be 96% on each arm. + +84 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +9.3 + +Analyses of Other Secondary Endpoints + +Other endpoints that will be evaluated include overall survival, time to progression, and +objective response rate. Overall survival will be characterized using Kaplan-Meier plots +and other descriptive metrics. The objective response rate will be provided for each arm, +with 90% exact binomial confidence intervals. Median time to progression will be +estimated for each arm. + +85 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +10 Adverse Event Reporting +10.1 Collection of Safety Information +Adverse Event (AE) is defined as any new untoward medical occurrence or worsening +of a pre-existing medical condition in a patient administered a medicinal product in a +clinical investigation and which does not necessarily have a causal relationship with this +treatment. An AE can therefore be any unfavorable and unintended sign (including an +abnormal laboratory finding, for example), symptom, or disease temporally associated +with the use of a product (investigational or marketed), whether or not considered related +to the product (investigational or marketed). Abnormal laboratory values or test results +constitute adverse events only if they induce clinical signs and symptoms, are +considered clinically significant, or require therapy. +Following written consent to participate in the study, all serious AEs should be collected +on a patient. The collection of non-serious AE information should begin at initiation of +therapy. +All identified AEs must be recorded and described on the appropriate page of the Case +Report Form (CRF). If known, the diagnosis of the underlying illness or disorder should +be recorded, rather than individual symptoms. The following information should be +documented for all AEs: date of onset and resolution, severity of the event; the +investigator’s opinion of the relationship to investigational product (see definitions +below); treatment required for the AE; cause of the event (if known); and information +regarding resolution/outcome. +Severity +CTCAE term (AE description) and grade: The descriptions and grading scales found +in the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version +4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be +downloaded from the CTEP web site (http://ctep.cancer.gov). +All appropriate treatment areas should have access to a copy of the CTEP CTCAE +Version 4.0 (see Appendix E). +Attribution +The following categories and definitions of causal relationship or attribution to study drug +should be used to assess Adverse Events: +• + +Definite: There is a reasonable causal relationship between the study drug and the +event. The event responds to withdrawal of study drug (dechallenge) and recurs with +rechallenge, if clinically feasible. + +• + +Probable: There is a reasonable causal relationship between the study drug and the +event. The event responds to dechallenge. Rechallenge is not required. + +• + +Possible: There is a reasonable causal relationship between the study drug and the +event. Dechallenge information is lacking or unclear. + +• + +Unlikely: There is doubtful causal relationship between the study drug and the event. + +86 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +• + +Unrelated: There is clearly not a causal relationship between the study drug and the +event or there is a causal relationship between another drug, concurrent disease, or +circumstances and the event. + +Categories ‘Definite’, ‘probable’ and ‘possible’ are considered study drug related. +Categories ‘not likely’ and ‘not related’ are considered not study drug-related. +The development of a new cancer should be regarded as an AE. New cancers are those +that are not the primary reason for administration of study treatment and have been +identified after inclusion of the patient into the clinical study. +AEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days +after the last dose of study therapy (fulvestrant and/or everolimus/placebo) until ≤ +grade 1 or stabilization, and reported as SAEs if they become serious. Serious +adverse events >30 days after last dose of fulvestrant and/or everolimus/placebo +are not reported unless the event may be related to everolimus/placebo. + +10.2 Handling of Serious Adverse Events (SAEs) +10.2.1 SAE Definitions +A serious AE is any untoward medical occurrence occurring after informed consent is +granted or that at any dose: +• + +results in death, + +• + +is life-threatening (defined as an event in which the study patient was at risk of death +at the time of the event; it does not refer to an event which hypothetically might have +caused death if it were more severe), + +• + +requires inpatient hospitalization or causes prolongation of existing hospitalization, + +• + +results in persistent or significant disability/incapacity, + +• + +is a congenital anomaly/birth defect, + +• + +is an important medical event (defined as a medical event(s) that may not be +immediately life-threatening or result in death or hospitalization but, based upon +appropriate medical and scientific judgment, may jeopardize the patient or may +require intervention (e.g., medical, surgical) to prevent one of the other serious +outcomes listed in the definition above.) +Examples of such events include, but are not limited to, intensive treatment in an +emergency room or at home for allergic bronchospasm; blood dyscrasias or +convulsions that do not result in hospitalization. + +10.2.2 SAE Reporting Requirements +All serious adverse events require expeditious handling and reporting to comply with +regulatory requirements. The Principal Investigator has the obligation to report all +serious adverse events to PrECOG, or their designee. A study specific SAE form to be +utilized for SAE reporting will be provided with supplemental study materials. + +87 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +All serious adverse events that occur either during the study period (Induction and/or +Continuation) or within 30 days of discontinuation of dosing regardless of event +relationship to the study medications (fulvestrant and/or everolimus/placebo) should be +reported to PrECOG, or their designee within 24 hours of the investigator’s knowledge of +the event or, when the event occurs on a weekend or national holiday, at the latest on +the following working day. All deaths during treatment or within 30 days following +completion of active protocol therapy must be reported. Serious adverse events that +occur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged +related to the everolimus/placebo (definitely, probably or possibly) must be reported to +PrECOG, or their designee using the 24 hour timeline noted above. If only limited +information is initially available, follow-up reports are required. Serious adverse events +that occur >30 days from last dose of fulvestrant and are judged to be related to +fulvestrant will follow normal reporting mechanisms for commercial drugs. +SAE Hotline Phone Number: +610-354-0404 during normal business hours (8:30 AM – 5 PM EST) +484-574-2367 after normal business hours (after 5 PM EST) +SAE Fax Number: +888-801-8795 +PrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department +(DS&E) of all SAE’s within 24 hours of the Awareness Date. Relevant follow-up +information will be provided to Novartis DS&E as soon as it becomes available. +In addition, Investigators should also report event(s) to their IRB as required. +Collection of complete information concerning SAEs is extremely important. Full +descriptions of each event will be followed. Thus, follow-up information which becomes +available as the SAE evolves, as well as supporting documentation (e.g., hospital +discharge summaries and autopsy reports), should be collected subsequently, if not +available at the time of the initial report, and immediately sent using the same procedure +as the initial SAE report. The original and all follow-up SAEs form must be kept on file at +the study site. +For Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious +adverse experiences will be forwarded to the product manufacturer by PrECOG (or their +designee), if applicable. + +10.3 Reporting of Second Primary Cancers +New cancers are those that are not the primary reason for administration of study +treatment and have been identified after inclusion of the patient into the clinical study. +All cases of new primary cancers that occur during or after protocol treatment must be +reported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol +treatment. Secondary primary malignancies should also be reported as a SAE. This form +is not for use for reporting recurrence or development of metastatic disease. A copy of +the pathology report, if applicable, should be sent, if available. +Note: Once data regarding survival and remission status are no longer required by the +protocol, no follow-up data should be submitted, including the PrECOG Second Primary +Form. + +88 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +11 Administrative +11.1 Protocol Compliance +The study shall be conducted as described in this protocol. All revisions to the protocol +must be discussed with, and be prepared by PrECOG and/or representatives. The +Investigator should not implement any deviation or change to the protocol or consent +without prior review and documented approval from PrECOG and/or representatives and +the IRB of an amendment, except where necessary to eliminate an immediate hazard(s) +to study patients. +If a deviation or change to the approved protocol is implemented to eliminate an +immediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the +IRB for review and approval as soon as possible afterward. Documentation of approval +signed by the chairperson or designee of the IRB(s) should be in the study records. If +PrECOG and/or representatives provides an amendment that substantially alters the +study design or increases the potential risk to the patient; the consent form must be +revised and submitted to the IRB(s) for review and approval; the revised form must be +used to obtain consent from patients currently enrolled in the study if they are affected +by the amendment; and the new form must be used to obtain consent from new patients +prior to study entry. Information as to who investigators should send correspondence will +be provided in additional study documents. + +11.2 Institutional Review Board +Before study initiation, the Investigator must have written and dated approval from their +respective IRB for the protocol, consent form, patient recruitment materials/process and +any other written information to be provided to patients. The Investigator should also +provide the IRB with a copy of the Investigator Brochure or product labeling, and any +updates. +The Investigator should provide the IRB with reports, updates, and other information +(e.g., Safety Updates, amendments, and administrative letters) according to regulatory +requirements, IRB or study site procedures. + +11.3 Informed Consent Procedures +Investigators must ensure that patients who volunteer for clinical trials or their legally +acceptable representative are clearly and fully informed about the purpose, potential +risks and other information. +A protocol specific informed consent form (ICF) template will be provided to sites. +Preparation of the site-specific consent form is the responsibility of the site Investigator +and must include all applicable regulatory and IRB requirements, and must adhere to +Good Clinical Practice (GCP) and to the ethical principles that have their origin in the +Declaration of Helsinki. All changes to the ICF template will be approved by PrECOG +and/or their representatives prior to implementation. +In accordance with the Health Information Portability and Accountability Act (HIPAA), the +consent process will also include written authorization by patients to release medical +information to allow PrECOG and/or its agents, regulatory authorities, and the IRB of +89 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +record at the study site for access to patient records and medical information relevant to +the study, including the medical history. This will be documented in the informed consent +form or other approved form obtained at the time of informed consent per institutional +policies. This form should also be submitted to PrECOG and/or its agents for review +prior to its implementation. +The Investigator must provide the patient or legally acceptable representative with a +copy of the consent form and written information about the study in the language in +which the patient is most proficient. The language must be non-technical and easily +understood. The Investigator should allow time necessary for patient or patient's legally +acceptable representative to inquire about the details of the study, then informed +consent must be signed and personally dated by the patient or the patient's legally +acceptable representative and by the person who conducted the informed consent +discussion. The patient or legally acceptable representative should receive a copy of the +signed informed consent and any other written information provided to study patients +prior to patient's participation in the trial. The investigator is responsible for assuring +adequate documentation of this process and for storage and maintenance of the original +signed consent form for each patient/subject. +The informed consent and any other information provided to patients or the patient's +legally acceptable representative, should be revised whenever important new +information becomes available that is relevant to the patient's consent, and should +receive IRB approval prior to use. The Investigator, or a person designated by the +Investigator should inform the patient or the patient's legally acceptable representative of +all pertinent aspects of the study and of any new information relevant to the patient's +willingness to continue participation in the study. This communication should be +documented in the patient record. During a patient's participation in the trial, any updates +to the consent form and any updates to the written information will be provided to the +patient. + +11.4 Safety Communication +Investigators will be notified of all AEs that are serious, unexpected, and definitely, +probably, or possibly related to the investigational product. Upon receiving such notices, +the Investigator must review and retain the notice with the Investigator Brochure and +submit a copy of this information to the Institutional Review Board (IRB) according to +local regulations. The Investigator and IRB will determine if the informed consent +requires revision. The Investigator should also comply with the IRB procedures for +reporting any other safety information. All revisions should be submitted to PrECOG +and/or agents for review. + +11.5 Monitoring +Representatives and agents of PrECOG and, as applicable to the study, the +manufacturer of Investigational Product must be allowed to visit all study site locations +periodically to assess the data, quality and study integrity. The purpose of this visit is to +review study records and directly compare them with source documents and discuss the +conduct of the study with the Investigator, and verify that the facilities remain acceptable. +The study may be evaluated by other auditors and government inspectors who must be +allowed access to electronic Case Report Forms (eCRFs), source documents and other +90 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +study files. The investigator must notify PrECOG of any scheduled visits by regulatory +authorities, and submit copies of all reports. Information as to who investigators should +notify of an audit or where to address questions will be provided in additional study +materials. Monitoring of drug accountability will also occur. + +11.6 Study Records +An Investigator is required to maintain adequate regulatory files with corresponding +communication and approvals, accurate histories, observations and other data on each +individual treated. Full details of required regulatory documents will be provided in +additional study materials. Data reported on the eCRF must be consistent with the +source documents as part of the patient record. +The confidentiality of records that could identify patients must be protected, respecting +the privacy and confidentiality rules in accordance with the applicable regulatory +requirement(s). +A study specific signature record will be maintained to document signatures and initials +of all persons at a study site who are authorized to make entries and/or corrections on +eCRFs as well as document other study-specific roles. + +11.7 Electronic Case Report Form (eCRF) Information +Additional information regarding eCRF instructions, timelines for data entry/submission +and query completion can be found in supplemental materials provided to the site. Sites +will be expected to complete eCRFs as per the schedule provided and submit all +relevant data as per the specified timelines. All items recorded on eCRFs must be found +in source documents. +The completed eCRF must be promptly reviewed, electronically signed, and dated by a +qualified physician who is an Investigator or Sub-Investigator. +Instructions for management of patients who do not receive any protocol therapy: +If a patient is randomized and does not receive any assigned protocol treatment, +baseline, Serious Adverse Event and follow-up data will still be entered and must be +submitted according to the eCRF instructions. Document the reason for not starting +protocol treatment on the appropriate electronic off-treatment form. + +11.8 Records Retention +FDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related +documentation, including source documents for the periods described below for studies +performed under a US IND: +• +• +• + +two years after the FDA approves the marketing application, or +two years after the FDA disapproves the application for the indication being studied, +or +two years after the FDA is notified by the sponsor of the discontinuation of trials and +that an application will not be submitted. + +The Investigator must retain investigational product disposition records, copies of eCRFs +(or electronic files), and source documents for the maximum period required by + +91 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +applicable regulations and guidelines, or Institution procedures, whichever is longer but +not less than 5 years from the completion of the study. The Investigator must contact +PrECOG and/or representatives prior to destroying any records associated with the +study. +Information as to who investigators should contact for questions will be provided in +additional study documents. PrECOG and/or representatives will notify the Investigator +when the trial records for this study are no longer needed. + +92 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +12 Glossary of Terms and List of Abbreviations +Term + +Definition + +4E-BP1 + +4E-Binding Protein + +Ab +ADPKD + +Antibodies +Autosomal Dominant Polycystic Kidney Disease + +ADR + +Adverse Drug Reaction + +AE(s) + +Adverse Events(s) + +Akt/PKB + +Protein Kinase B + +AI + +Aromatase Inhibitor + +Alk Phos + +Alkaline Phosphatase + +ALT/SGPT +AMD + +Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase +Age-Related Macular Degeneration + +ANC + +Absolute Neutrophil Count + +ASCO-CAP + +American Society of Clinical Oncology-College of American Pathologist + +AST/SGOT + +Aspartate +Aminotransferase/Glutamic +Glutamic-Oxaloacetic Transaminase + +AUC +°C + +Area Under the Concentration-Time Curve +degrees Celsius + +Ca + +Calcium + +CBC + +Complete Blood Count + +CBR + +Clinical Benefit Rate + +CI + +Confidence Interval + +CISH + +Chromogenic In Situ Hybridization + +Cl + +Chloride + +cm +Cmax + +centimeter +Maximum plasma concentration + +CO2 + +Carbon Dioxide + +CoA + +Coenzyme A + +COPD + +Chronic Obstructive Pulmonary Disease + +CPK + +Creatine Phosphokinase + +CR + +Complete Response + +CRC + +Colorectal Cancer + +Creat + +Creatinine + +CRF + +Case Report Form + +CRO + +Contract Research Organization + +CT + +Computer Tomography + +CTC + +Common Toxicity Criteria + +93 + +Oxaloacetic + +Transaminase/Serum + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Term + +Definition + +CTCAE + +The CTEP Common Terminology Criteria for Adverse Events (CTCAE) + +CTEP + +Cancer Therapy Evaluation Program + +CYP3A4 + +CytochromeP450 3A4 Isoenzyme + +DLBCL + +Diffuse Large B Cell Lymphoma + +DLCO + +Diffusing Capacity of the Lung for Carbon Monoxide + +DLT + +Dose Limiting Toxicity + +DNA + +Deoxyribonucleic Acid + +DS&E + +Drug Safety and Epidemiology + +eCRF +e.g. +ER + +Electronic Case Report Form +exempli gratia (for example) +Estrogen Receptor + +FSH +EU +FDA + +Follicle Stimulating Hormone +European Union +Food and Drug Administration +Fluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography + +FDG-PET +FISH +FKBP-12 +FSH + +Fluorescence In Situ Hybridization +FK506-Binding Protein 12 +Follicle Stimulating Hormone + +GBM + +Glioblastoma Multiforme + +GCP + +Good Clinical Practice + +GEP-NET + +Gastroenteropancreatic Neuroendocrine Tumor + +GERD + +Gastroesophageal Reflux Disease + +GF + +Growth Factor + +GI + +Gastrointestinal + +GnRH + +Gonadotropin-Releasing Hormone + +HBV + +Hepatitis B Virus + +HBcAb + +Hepatitis B core Antibodies + +HBsAb + +Hpatitis B surface Antibodies + +HbsAg + +Hepatitis B surface Antigen + +HCC + +Hepatocellular Cancer + +HCV + +Hepatitis C Virus + +HER-2 + +Human Epidermal Growth Factor Receptor 2 + +HIF-1 + +Hypoxia-Inducible Factor-1 + +HIPAA + +Health Information Portability and Accountability Act + +HIV + +Human Immunodeficiency Virus + +HMG + +3-hydroxy-3-methyl-glutaryl + +HR + +Hormone-Receptor + +HUVECS + +Human Umbilical Endothelial Cells + +IB + +Investigator Brochure (also called Investigator Drug Brochure, IDB) + +94 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Term + +Definition + +ICF + +Informed Consent Form + +ICH + +International Conference on Harmonization + +IND +INN + +Investigational New Drug +International Non-Proprietary Name + +INR + +International Normal Ratio + +IRB +IU + +Institutional Review Board +International Unit + +IV + +Intravenous + +IWR + +Interactive Web Randomization + +K + +Potassium + +kg + +Kilogram + +L + +Liter + +LDH + +Lactate Dehydrogenase + +LDL + +Low-Density Lypoproteins + +LFTs + +Liver Function Tests + +LLN + +Lower Limit Normal + +LMW +Log10 + +Low Molecular Weight +Decadic logarithm (common logarithm) + +M + +Meter + +mg +Mg + +Milligram +Magnesium + +min + +minute + +mL + +Milliliter + +mRCC + +Metastatic Renal Cell Carcinoma + +MRI + +Magnetic Resonance Imaging + +mTOR + +mammalian Target of Rapamycin + +N +Na + +Number of patients or observations +Sodium + +N/A + +Not Applicable + +NCI + +National Cancer Institute + +NSCLC + +Non-Small Cell Lung Cancer + +Ng + +Nanogram + +µM +Nm + +Nanometer + +nM + +Nanomolar + +OS + +Overall Survival + +PD + +Progressive Disease +Phosphoinositide 3-kinase + +P13K + +Micromolar + +95 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Term + +Definition + +PI + +Package Insert + +PBMC + +Peripheral Blood Mononuclear Cells + +PCR +PET + +Polymerase Chain Reaction +Proton Emission Tomography + +PFS +PgP + +Progression Free Survival +P-glycoprotein + +PK + +Pharmacokinetic + +Plt + +Platelet + +PNET + +Pancreatic Neuroendocrine Tumor + +PO +PR + +Per Oral (by mouth route of administration) +Partial Response + +PR-positive + +Progesterone Receptor + +PSA + +Prostate-Specific Antigen + +PTEN + +Phosphatase and Tensin Homolog Deleted on Chromosome 10 + +PT/PTT + +Prothrombin Time/Partial Thromboplastin Time + +QC +QD + +Quality Control +Once Daily +the interval between the beginning of the Q-wave and the end of the T-wave on +an electrocardiogram + +QT +QTc + +corrected Q to T wave interval on electrocardiogram + +RCC +RECIST +RNA + +Renal Cell Carcinoma +Response Evaluation Criterion Solid Tumors +Ribonucleic Acid +Response Rate + +RR +RTK +S6K1 +SAE +SC +SCLC +SD +SEGA +SERD + +Receptor Tyrosine Kinase +S6 Kinase 1 +Serious Adverse Event +Subcutaneous +Small Cell Lung Cancer +Stable Disease +Subependymal Giant Cell Astrocytoma +Selective Estrogen Receptor Down-Regulators + +SERM + +Selective Estrogen Receptor Modulator + +T Bili +TKI + +Total Bilirubin +Tyrosine Kinase Inhibitor + +TS + +Tuberous Sclerosis + +TSC + +Tuberous Sclerosis Complex + +TTP + +Time to Progression + +96 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Term + +Definition + +TUNNEL + +Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End +Labeling + +µg + +microgram + +ULN + +Upper Limit Normal + +US + +United States + +USP +VEGF + +United States Pharmacopeia +Vascular Endothelial Growth Factor + +WBC + +White Blood Cell Count + +WHO + +World Health Organization + +97 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +13 Appendix A: Eligibility Checklist + + +Pt Initials: ___ ___ ___ +F + +M + +L + +Study Personnel: ____________________________ +Date of Evaluation: ___/___/____ + +INCLUSION CRITERIA +Must be willing to sign a protocol-specific informed consent. +Consent Date: _____/_____/_____ + +Consent in patient record + +Age > 18 and female. +Birth Date: _____/_____/_____ + +Documentation in patient record + +ECOG Performance Status 0 or 1. +PS + +0 + +1 + +(must document in patient record) + +Patient must have histologically or cytologically confirmed adenocarcinoma of the breast. +Pathology Date: _____/_____/______ + +Pathology must be in patient record + +Must have stage IV disease or inoperable locally advanced disease. +Documentation in patient record (via imaging scans as per RECIST Section 6.0) +Patients must have ER and/or PR-positive disease as determined by their local pathology or +51 +reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal +52 +by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria. +ER+ + +PR+ + +ER+ and PR+ + +Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies +Pathology Date: _____/_____/______ + +Pathology must be in patient record + +Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor +(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase +inhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g., +Tamoxifen) between the time of progression on an AI and registration. +Documentation in patient record +Patients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients +who have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of +randomization are eligible as long as they meet other eligibility criteria. +Documentation in patient record +Patients must be post menopausal. (see Section 3.1) +Documentation in patient record + +98 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + + +Pt Initials: ___ ___ ___ +F + +M + +L + +Study Personnel: ____________________________ +Date of Evaluation: ___/___/____ + +Patient may have received up to one prior systemic chemotherapy regimen for metastatic +disease. +no prior systemic chemotherapy +one prior systemic chemotherapy regimen +documentation in patient record +Adequate end organ function, as evidenced by the following obtained within 4 weeks of +randomization: all must be present (see Section 7.0 for labs that may need to be repeated within +≤ 7 days of Cycle 1, Day 1) +9 + +Total White Blood Cell Count (leucocytes, WBC) ≥ 3.0 x 10 /L, absolute neutrophil count +9 +9 +(ANC) ≥ 1.5 x 10 /L and platelet count ≥ 100 x 10 /L +(Total WBC value:_________unit__________) +(ANC value:_________unit__________) +(Platelet Count value:_________unit__________) +Hemoglobin ≥ 9 g/dL +(value:_________unit___________) +Serum Bilirubin ≤ 1.5 x ULN +(value:_________unit___________ULN_______) +AST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases) +(AST value:_________unit___________ULN_______) +(ALT value:_________unit___________ULN_______) +Serum Creatinine ≤ 1.5 x ULN (value:_________unit___________ULN_______) +Serum Albumin ≥ 3 g/dL +(value:_________unit__________) +Fasting Serum Cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND Fasting Triglycerides ≤ 2.5 x +ULN Note: In case one or both of these thresholds are exceeded, the patient can only be +included after initiation of appropriate lipid lowering medication. +(Fasting Serum Cholesterol value:_________unit__________) +(Fasting Triglycerides value:_________unit___________ULN_______) +PT with INR ≤ 1.5. (Anticoagulation is allowed if target INR ≤ 1.5 on a stable dose of warfarin +or on a stable dose of low molecular weight heparin for >2 weeks at time of randomization. +(INR value:_________unit___________) +(PT value:_________unit___________) +Documentation in patient record + +99 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + + +Pt Initials: ___ ___ ___ +F + +M + +L + +Study Personnel: ____________________________ +Date of Evaluation: ___/___/____ + +Patients may have measurable disease, non-measurable disease (e.g., bone only metastases), +or both. Response and progression will be evaluated in this study using the new international +criteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST) +guideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those +that can be accurately measured in at least one dimension (longest diameter to be recorded) as +≥ 20 mm by chest x-ray, as ≥ 10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All +tumor measurements must be recorded in millimeters (or decimal fractions of centimeters). +Measurable disease only +Non-measurable disease only +Both measurable and non-measurable disease +Documentation in patient record +Note: Tumor lesions in a previously irradiated field are not considered measurable. +Patients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix +within the past five years must have been treated with curative intent. Patients with a history of +prior malignancy are eligible provided they were treated with curative intent and have been free +of disease for >3 years. +N/A + +Date of treatment: _____/_____/_____ + +Documentation in patient record + +EXCLUSION CRITERIA +Patients who have had any major surgery or significant traumatic injury within 4 weeks of +randomization, or have not recovered from the side effects of any major surgery (defined as +requiring general anesthesia) or patients that may require major surgery during the course of the +study are not eligible. (Placement of vascular access device will not be considered major +surgery.) +Date of surgery: _____/_____/_____ + +N/A + +Documentation in patient record + +Patients may not be receiving any other investigational agents or have received any +investigational agent within 4 weeks of randomization. +Date of last treatment: _____/_____/_____ + +N/A + +Documentation in patient record + +Patients must not be receiving any concomitant anticancer treatment or have received anticancer +treatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody +based therapy, e.g.), with the following exceptions: +• Bisphosphonates, Zometa or Xgeva for bone metastases +• Hormonal therapy (e.g., AI, Tamoxifen) +• a GnRH analog is permitted if the patient had progressive disease on a GnRH analog +plus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be +discontinued. +Date of last treatment: _____/_____/_____ + +N/A + +100 + +Documentation in patient record + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + + +Pt Initials: ___ ___ ___ +F + +M + +L + +Study Personnel: ____________________________ +Date of Evaluation: ___/___/____ + +Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus, +everolimus). +N/A + +Documentation in patient record + +Patients must not be receiving chronic, systemic treatment with corticosteroids or another +immunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily. +Topical or inhaled corticosteroids are allowed. +N/A + +Documentation in patient record + +Patients must not receive immunization with attenuated live vaccines within one week of +randomization or during the study period. Close contact with those who have received attenuated +live vaccines should be avoided during treatment with everolimus. Examples of live vaccines +include intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella +and TY21a typhoid vaccines. +N/A + +Documentation in patient record + +Patients must not have current or a prior history of brain metastases or leptomeningeal disease. +Patients must not have rapidly progressive, life-threatening metastases. This includes patients +with extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic +metastases. +N/A + +Documentation in patient record + +Patients must not have a known hypersensitivity/history of allergic reactions attributed to +compounds of similar chemical or biologic composition to everolimus (or other rapamycins such +as sirolimus, temsirolimus) or fulvestrant. +N/A + +Documentation in patient record + +Since everolimus may cause bone marrow suppression, patients with congenital or acquired +immune deficiency at increased risk of infection are not eligible. This includes patients being +treated with chronic immunosuppressive agents (including greater than or equal to 5 mg +prednisone or its equivalent daily), and patients with known HIV seropositivity. +N/A + +Documentation in patient record + +Patients must not have any impairment of gastrointestinal function or gastrointestinal disease +that may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled +nausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection). +N/A + +Documentation in patient record + +Patients must not have an active, bleeding diathesis. +N/A + +Documentation in patient record + +101 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + + +Pt Initials: ___ ___ ___ +F + +M + +L + +Study Personnel: ____________________________ +Date of Evaluation: ___/___/____ + +Patients must not have a history of any condition or uncontrolled intercurrent illness including, +but not limited to, ongoing or active infection or psychiatric illness/social situations that in the +opinion of the investigator might intefere with or limit the patient’s ability to comply with the +protocol or pose additional or unacceptable risk to the patient. +N/A + +Documentation in patient record + +Patients must not have any severe and/or uncontrolled medical conditions or other conditions +that could affect their participation in the study such as: +• + +Symptomatic congestive heart failure of New York Heart Association Class III or IV (see +Appendix D) + +• + +Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious +uncontrolled cardiac arrhythmia or any other clinically significant cardiac disease + +• + +History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g. +COPD) requiring treatment. Such patients would be eligible if PFTs performed within 8 +weeks of treatment noted a DLCO greater than 50%. + +• + +Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal +glycemic control should be achieved before starting trial therapy.) + +• + +Active (acute or chronic) or uncontrolled severe infections + +• + +Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C). + +Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at +screening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all +patients with a positive medical history based on risk factors and/or confirmation of prior +HBV/HCV infection. +N/A + +Documentation in patient record + +102 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +14 Appendix B: ECOG Performance Status Scale +Grade ECOG +0 + +Fully active, able to carry on all pre-disease performance without restriction + +1 + +Restricted in physically strenuous activity but ambulatory and able to carry out +work of a light or sedentary nature, e.g., light house work, office work + +2 + +Ambulatory and capable of all self-care but unable to carry out any work +activities. Up and about more than 50% of waking hours + +3 + +Capable of only limited self-care, confined to bed or chair more than 50% of +waking hours + +4 + +Completely disabled. Cannot carry on any self-care. Totally confined to bed or +chair + +5 + +Dead + +61 + +Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair + +103 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +15 Appendix C: Medications that can Inhibit/Induce CYP3A4 +and PgP +See Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines +on use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors +and inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug +interactions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A. +Table 15-0 +Clinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme +CYP3A +INHIBITORS +Strong Inhibitors: +clarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir, +mibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin, +tipranavir, troleandamycin, voriconazole +(Krishna et al, 2009) +Moderate Inhibitors: +aprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem, +dronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit +juice), imatinib, tofisopam, verapamil +INDUCERS +amprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine, +dexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine, +oxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin, +ritonavir, rufinamide, St. John’s wort, talviraline, tipranavir, topiramate, troglitazone + +104 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +Table 15-1 +Clinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP +and PgP/CYP3A +SUBSTRATES +Colchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine +INDUCERS +Rifampin, St. John’s wort +PgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS +Amiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone, +elacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir, +itraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine, +quercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John’s wort +(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil +Reference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated +Oct. 2, 2011, which summarizes DDI data from three sources including the FDA’s +“Guidance for Industry, Drug Interaction Studies”, the University of Washington’s Drug +Interaction Database, and Indiana University School of Medicine's Drug Interaction +Table. + +105 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +16 Appendix D: New York Heart Association (NYHA) Cardiac +Classification of Functional Capacity and Objective +Assessment +In 1928 the New York Heart Association published a classification of patients with cardiac +disease based on clinical severity and prognosis. This classification has been updated in seven +subsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and +Great Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the +American Heart Association, New York City Affiliate, was released March 4, 1994*. The new +classifications are summarized below. +The NYHA classification system relates symptoms to everyday activities and the patient’s quality +of life. + +Class + +Symptoms + +Class I + +Patients with cardiac disease but without resulting limitation of physical +activity. Ordinary physical activity does not cause undue fatigue, +palpitation, dyspnea (shortness of breath), or anginal pain. + +Class II + +Patients with cardiac disease resulting in slight limitation of physical +activity. Comfortable at rest, but ordinary physical activity results in +fatigue, palpitation, dyspnea or anginal pain. + +Class III + +Patients with cardiac disease resulting in marked limitation of physical +activity. Comfortable at rest, but less than ordinary activity causes +fatigue, palpitation, dyspnea or anginal pain. + +Class IV + +Patients with cardiac disease resulting in inability to carry out any +physical activity without discomfort. Symptoms of heart failure or anginal +syndrome may be present even at rest. If any physical activity is +undertaken, discomfort increases. + +Objective Assessment +I: + +No objective evidence of cardiovascular disease + +II: + +Objective evidence of minimal cardiovascular disease + +III: + +Objective evidence of moderately severe cardiovascular disease + +IV: + +Objective evidence of severe cardiovascular disease + +Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712 +The Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of +Diseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256. + +106 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +17 Appendix E: CTEP Common Terminology Criteria for +Adverse Events (CTCAE) Version 4.0 +Common Terminology Criteria for Adverse Events (CTCAE) +CTCAE term (AE description) and grade: The descriptions and grading scales found +in the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version +4.0 will be utilized for AE reporting. All appropriate treatment areas should have access +to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be +downloaded from the CTEP web site (http://ctep.cancer.gov). +All appropriate treatment areas should have access to a copy of the CTEP CTCAE +Version 4.0. + +107 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +18 Appendix F: Patient Pill Diary +Copies of this form will be made available to study staff in study materials. This form is +appended as an example only, and may be modified during the study. + +Site Instructions: +1. If this or a similar diary is used this may be considered source documentation, if the +diary has been reviewed and signed by a member of the study staff. Patient +compliance with protocol therapy can be assessed using a pill record or by other +documentation in the patient record. +2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with +each cycle being 28 days. +3. If a dose modification occurs, patients should be given instructions for dosing, and +the form can be modified as appropriate. Any dose changes should be recorded in +the patient chart with appropriate rationale as per protocol. +4. A new form can be used at any time during a cycle; as long as the patient is made +aware of changes (e.g. study staff fills in dates and mark lines/dates not to be used). +5. It is the responsibility of the investigator to appropriately dispense and monitor study +medications and to comply with the protocol. + +108 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 +Patient Name: _____________________________ + +Patient Study ID (filled in by Site Staff): +______________________ + +Patient Instructions: +1. Complete each form as instructed by your physician or study nurse. +2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the +morning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose. +Otherwise just skip that dose and begin as usual the next day. Please mark dates of any missed +pills on your record. +3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food. +The tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets +should be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of +water should be put into a glass. The tablets should then be added and the contents stirred gently +(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk. +If you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to +take the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose +and begin as usual the next day. +4. If you have any side effects or comments, please note in the comment section or on the back of the +page. For questions or if you have any side effects that should be immediately reported to your +study doctor, please call _______________________________at: (_____) _____ - _________. +5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If +your dose changes, the study nurse or doctor will let you know. You should note this on the form. +Date + +Day + +# Pills + +Comments + +Date + +Day + +1 +2 + +15 +16 + +3 + +17 + +4 + +18 + +5 + +19 + +6 + +20 + +7 + +21 + +8 + +22 + +9 + +23 + +10 + +24 + +11 + +25 + +12 + +26 + +13 + +27 + +14 + +28 + +Patient Signature: _________________________________ + +# Pills + +Comments + +Date: ___________________ + +Physician Office to complete this section: +Study Personnel Signature: __________________________ + +109 + +Date: ____________________ + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +19 References +1. +Moy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy +and new therapeutic approaches. Clin Cancer Res 2006;12:4790-3. +2. +Nicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in +human malignancy. Cell Signal 2002;14:381-95. +3. +DeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid +restores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol +2003;14:1051-6. +4. +Tokunaga E, Kataoka A, Kimura Y, et al. The association between Akt +activation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer +2006;42:629-35. +5. +Beeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA. +Akt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling. +Ann Oncol 2007;18:1323-8. +6. +Perez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a +worse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5. +7. +Bjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat +Rev Cancer 2004;4:335-38. +8. +Shaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell +growth. Nature 2006;441:424-30. +9. +deGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity +restores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin +Cancer Res 2004;10:8059-67. +10. +Awada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001 +(everolimus) in combination with letrozole in patients with advanced breast cancer: +results of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91. +11. +American Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta: +American +Cancer +Society +Inc.; +http://www.cancer.org/acs/groups/content/@ +epidemiologysurveilance/documents/document/acspc-030975.pdf +(accessed 7/11/2012) +12. +Buzdar AU. Endocrine therapy in the treatment of metastatic breast cancer. +Semin Oncol 2001;28:291-304. +13. +Campos SM, Winer EP. Hormonal therapy in postmenopausal women with +breast cancer. Oncology 2003;64:289-99. +14. +Sparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and +prevention. New York: Marcel Dekker; 2002. +15. +Winer EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology +technology assessment on the use of aromatase inhibitors as adjuvant therapy for +postmenopausal women with hormone receptor-positive breast cancer: status report +2004. J Clin Oncol 2005;23:619-29. +16. +Berry J. Are all aromatase inhibitors the same? A review of controlled clinical +trials in breast cancer. Clin Ther 2005;27:1671-84. +110 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +17. +Howell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI +182,780, is as effective as anastrozole in postmenopausal women with advanced +breast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403. +18. +Osborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial +comparing the efficacy and tolerability of fulvestrant versus anastrozole in +postmenopausal women with advanced breast cancer progressing on prior endocrine +therapy: results of a North American trial. J Clin Oncol 2002;20:3386-95. +19. +Mauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK. +Fulvestrant (Faslodex®) versus anastrozole for the second-line treatment of advanced +breast cancer in subgroups of postmenopausal women with visceral and non-visceral +metastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833. +20. +Howell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus +tamoxifen for the treatment of advanced breast cancer in postmenopausal women +previously untreated with endocrine therapy: a multinational, double-blind, randomized +trial. J Clin Oncol 2004;22:1605-13. +21. +Ingle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced +breast cancer after progression on prior aromatase inhibitor therapy: North Central +Cancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6. +22. +Perey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in +postmenopausal women with advanced breast cancer and primary or acquired +resistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical +Cancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9. +23. +Chia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo +controlled trial of fulvestrant compared with exemestane after prior nonsteroidal +aromatase inhibitor therapy in postmenopausal women with hormone receptor-positive, +advanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70. +24. +Di Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III, +Randomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500 +mg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast +Cancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600. +25. +Boulay A, Lane HA. The mammalian target of rapamycin kinase and tumor +growth inhibition. Recent Results Cancer Res 2007;172:99-124. +26. +Wullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism. +Cell 2006;124(3):471-84. +27. +Manning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell +2007;129(7):1261-74. +28. +Wang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1 +kinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem +2007;282(27):20036-44. +29. +Witzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent +temsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005; +23(23):5347-56. +111 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +30. +Lane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus) +has antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor. +Clin Cancer Res 2009;15(5):1612-22. +31. +Mabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian +cancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in +an ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70. +32. +Galanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group +Study. J Clin Oncol 2005;23:5294-304. +33. +O’Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of +the mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further +Proposals. Tran Oncol; 2010 Apr; 3(2):65-79. +34. +Huang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel +antitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304. +35. +Zitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001 +(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine +tumor cells. Neuroendocrinology 2007;85(1):54-60. +36. +Zeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce +mTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12. +37. +Haritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP. +Antiproliferative activity of RAD001 (everolimus) as a single agent and combined with +other agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9. +38. +Ikezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of +PI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult +T-cell leukemia cells. Leuk Res 2007;31(5):673-82. +39. +Wanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition +induces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises +DLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84. +40. +Tuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil +sensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to +standard chemotherapy? Eur Surg Res 2007;39(6):380-7. +41. +Treeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment +with mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human +cancer cells. Gynecol Oncol 2006;102(2):292-9. +42. +Sieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin +pathway activity in hepatocellular carcinomas of patients undergoing liver +transplantation. Transplantation 2007;83(4):425-32. +43. +Lu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically +applicable strategies for overcoming trastuzumab resistance caused by PTEN +deficiency. Clin Cancer Res 2007;13(9):5883-8. +44. +Torres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M. +Targeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the +mammary gland. Cancer Res 2006;66(23):11381-8. +112 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +45. +Rossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic +intervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U +S A 2006;103(34):12843-8. +46. +Lane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic / +pharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the +oral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A. +47. +Tabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of +the mammalian target of rapamycin pathway with everolimus: A phase I tumor +pharmacodynamic study in patients with advanced solid tumors. J Clin Oncol +2008;28:10. +48. +http://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965 +.htm (accessed 8/1/2012) +49. +Baselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal +hormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb +9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876 +50. +Sanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined +phosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21. +51. +Hammond ME, Hayes DF, Wolff AC, et al. American society of clinical +oncology/college of American pathologists guideline recommendations for +immunohistochemical testing of estrogen and progesterone receptors in breast cancer. +Oncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID: +21037871. +52. +Wolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical +Oncology/College of American Pathologists guideline recommendations for human +epidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan +1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of +American Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.) +PMID: 17159189. +53. +Yeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with +hepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol +2004;15:1661-6. +54. +Loomba R, Rowley A, Wesley R, et al. Systematic review: the effect of +preventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med +2008;148(7):519-28. +55. +Divers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with +mTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast +Cancer: Clinical Experiences from a Single Center. Presented at the 38th Annual +Oncology Nurses’ Society Congress, April 25-28, 2013. Novartis Internal +Communication. +56. +Eisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria +in solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847. +57. +Bubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for +phase II clinical trials in androgen-independent prostate cancer: recommendations from +the Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7. +113 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +58. +Scher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for +patients with progressive prostate cancer and castrate levels of testosterone: +recommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol +2008;26:1148-59. +59. +Rustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the +response to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst +2004;96:487-8. +60. +Vergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the +response to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup. +J Natl Cancer Inst 2000;92:1534-5. +61. +Oken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the +Eastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55. + +114 + + PrECOG Protocol Number: PrE0102 +Confidential +Date: 1/22/2014 + +20 Investigator’s Statement +1. + +I have carefully read this protocol entitled “Randomized, Double-Blind, +Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus +Everolimus in Post Menopausal Patients with Hormone-Receptor +Positive Metastatic Breast Center Resistant to Aromatase Inhibitor +Therapy, Version 2.0 dated 1/22/2014” (Protocol number PrE0102) +and agree that it contains all the necessary information required to +conduct the study. I agree to conduct the study as outlined in the protocol. + +2. + +I agree to conduct this study according to the moral, ethical and scientific +principles governing clinical research as set out in the Declaration of +Helsinki, the principles of GCP as described in 21 CFR and any applicable +local requirements. + +3. + +I understand that this trial and any subsequent changes to this trial will not +be initiated without approval of the appropriate Institutional Review Board, +and that all administrative requirements of the governing body of the +institution will be complied with fully. + +4. + +Informed written consent will be obtained from all participating patients in +accordance with institutional and FDA requirements as specified in Title +21, Code of Federal Regulations, Part 50. + +5. + +I understand that my signature on the Case Report Form indicates that I +have carefully reviewed each page and accept full responsibility for the +contents thereof. + +6. + +I understand that the information presented in this study protocol is +confidential, and I hereby assure that no information based on the conduct +of the study will be released without prior consent from PrECOG, LLC +unless this requirement is superseded by the Food and Drug +Administration. + +Principal Investigator: +PI Name: +Site Name: +Signature of PI: +Date of Signature: + +\ +MMM + +\ +DD + +115 + +YYYY + + \ No newline at end of file diff --git a/files/NCT01797120_sections.json b/files/NCT01797120_sections.json new file mode 100644 index 0000000..a73bc34 --- /dev/null +++ b/files/NCT01797120_sections.json @@ -0,0 +1,524 @@ +[ + { + "sectionNumber": "1", + "sectionTitle": "Introduction", + "text": "

See section 1 Introduction.

", + "parent": null + }, + { + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "text": "
\n

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor \u03b1 activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell\u2019s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole \u2265 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

\n
", + "parent": "1" + }, + { + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "text": "
\n

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

\n
", + "parent": "1" + }, + { + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "text": "
\n

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

\n
", + "parent": "1" + }, + { + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "text": "
\n

Fulvestrant (Faslodex\u00ae, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex\u00ae\n(fulvestrant) Injection for \u201c\u2026the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy\u201d.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

\n
", + "parent": "1.3" + }, + { + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "text": "
\n

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

\n
", + "parent": "1.3" + }, + { + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "text": "
\n

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

\n
", + "parent": "1.3" + }, + { + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "text": "
\n

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican\u00ae) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress\u00ae) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor\u00ae and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor\u00ae received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia\u00ae in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor\u00ae was\napproved for \u201cprogressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease\u201d in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor\u00ae received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor\u00ae received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n\u2022

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\u2022

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

\n
", + "parent": "1" + }, + { + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "text": "
\n

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n\u2022\n\u2022\n\u2022

\n

\u2022\n\u2022

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n\u2022

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\u2022

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 \u03bcM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or \u2018resistant\u2019 (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

\n
", + "parent": "1.4" + }, + { + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "text": "
\n

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator\u2019s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-\u03c4 is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-\u03c4 and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator\u2019s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator\u2019s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican\u00ae, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress\u00ae) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator\u2019s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor\u00ae for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n\u2022\n\u2022\n\u2022\n\u2022

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor\u00ae) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence \u2265 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence \u2265\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence \u2265 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence \u2265 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator\u2019s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

\n
", + "parent": "1.4" + }, + { + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "text": "

See section 1.4.3 Clinical Experience.

", + "parent": "1.4" + }, + { + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "text": "
\n

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

\n
", + "parent": "1" + }, + { + "sectionNumber": "2", + "sectionTitle": "Objectives", + "text": "

See section 2 Objectives.

", + "parent": null + }, + { + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "text": "
\n

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

\n
", + "parent": "2" + }, + { + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "text": "
\n

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

\n
", + "parent": "2" + }, + { + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "text": "

See section 3 Selection of Patients.

", + "parent": null + }, + { + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "text": "
\n

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n\u2022\n\u2022

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n\u2022

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage \u2265 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

total white blood cell count (leukocytes, WBC) \u2265 3.0 x 109/L, absolute\nneutrophil count (ANC) \u2265 1.5 x 109/L and platelet count \u2265 100 x 109/L\nhemoglobin \u2265 9 g/dL\nserum bilirubin \u2264 1.5 x ULN\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\nserum creatinine \u2264 1.5 x ULN\nserum albumin \u2265 3 g/dL\nfasting serum cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND fasting\ntriglycerides \u2264 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR \u2264 1.5 (Anticoagulation is allowed if target INR \u2264 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin \u2264 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as \u2265 20 mm by chest x-ray, as \u2265\n10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n\u2022

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\u2022

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\u2022

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient\u2019s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

\n
", + "parent": "3" + }, + { + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "text": "

See section 4 Randomization Procedures.

", + "parent": null + }, + { + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "text": "
\n

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

\n
", + "parent": "4" + }, + { + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "text": "
\n

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

\n
", + "parent": "4" + }, + { + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "text": "
\n

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin \u2264 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

\n
", + "parent": "4" + }, + { + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "text": "

See section 5 Treatment Plan.

", + "parent": null + }, + { + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "text": "
\n

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

\n
", + "parent": "5" + }, + { + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "text": "

See section 5.2 Dosing and Administration.

", + "parent": "5" + }, + { + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "text": "
\n

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

\n
", + "parent": "5.2" + }, + { + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "text": "
\n

\u2022

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\u2022

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\u2022

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\u2022

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\u2022

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\u2022

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\u2022

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

\n
", + "parent": "5.2" + }, + { + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "text": "

See section 5.3 Dose Modifications and Toxicity Management.

", + "parent": "5" + }, + { + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "text": "
\n

Placebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n\u2022

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\u2022

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is \u2264 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\u2022

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\u2022

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\u2022

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\u2022

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nIf resolution occurs within \u2264 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade \u2264 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, \u2265 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade \u22641

\n

(platelets <50, \u2265 25 x 10 /L)

\n

If resolution occurs \u2264 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, \u2265 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade \u2264 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade \u22641 or baseline\nvalue\nIf AE resolution occurs \u2264 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade \u2264 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade \u2264 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

\n
", + "parent": "5.3" + }, + { + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "text": "
\n

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for \u2265 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence \u2265 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence \u2265 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator\u2019s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

\u2264 baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n\u2264 baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n\u2022

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\u2022

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered \u2018cured\u2019).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n\u02c32 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed \u201cmiracle mouth wash\u2019\u2019 QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using \u201cmiracle mouthwash\u2019\u2019.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and \u201cmiracle mouth wash\u201d.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and \u201cmiracle mouth wash\u201d\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase\u00ae) or Periogard\u00ae oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol\u2013containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to \u2264 grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade \u2264\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to \u2264 grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade \u2264 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to \u2264\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

\n
", + "parent": "5.3" + }, + { + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "text": "
\n

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken \u2264 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

\n
", + "parent": "5.3" + }, + { + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "text": "
\n

The following restrictions apply during the entire duration of the study:\n\u2022

\n

No other investigational therapy should be given to patients.

\n

\u2022

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\u2022

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\u2022

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\u2022

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\u2022

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\u2022

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\u2022

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\u2022

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\u2022

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John\u2019s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week\u2019s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient\u2019s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

\n
", + "parent": "5.3" + }, + { + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "text": "

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

", + "parent": "5.3" + }, + { + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "text": "

See section 5.4 Supportive Care.

", + "parent": "5" + }, + { + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "text": "
\n

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to \u2264 grade 1 (or if >grade 1, event must be permanent and stable).

\n
", + "parent": "5" + }, + { + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "text": "
\n

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n\u2022

\n

Withdrawal of the patient\u2019s consent (patient\u2019s decision to withdraw for any reason)

\n

\u2022

\n

Termination of the study by PrECOG

\n

\u2022

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\u2022

\n

Inability to comply with protocol

\n

\u2022

\n

Discretion of the investigator

\n

\u2022

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

\n
", + "parent": "5" + }, + { + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "text": "

See section 6 Measurement of Effect.

", + "parent": null + }, + { + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

", + "parent": "6" + }, + { + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "text": "
\n

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

\n
", + "parent": "6.1" + }, + { + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "text": "
\n

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n\u2022

\n

\u2265 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\u2022

\n

\u2265 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\u2022

\n

\u2265 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be \u2265 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with \u2265 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n\u2018Cystic lesions\u2019 thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

\n
", + "parent": "6.1" + }, + { + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "text": "
\n

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and \u2265 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n\u2022\n\u2022

\n

\u2022

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A \u2018positive\u2019 FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest \u201cincrease\u201d in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from \u201ctrace\u201d to\n\u201clarge\u201d, an increase in nodal disease from \u201clocalized\u201d to \u201cwidespread\u201d, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of \u201cnon-target\u201d lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient\u2019s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n\u201csymptomatic deterioration\u201d. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*\u2018Non-CR/Non-PD\u2019 is preferred over \u2018stable disease\u2019 for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

\n
", + "parent": "6.1" + }, + { + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "text": "

See section 6.1.4 Response Criteria.

", + "parent": "6.1" + }, + { + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "text": "
\n

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

\n
", + "parent": "6.1" + }, + { + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "text": "
\n

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN \u2264 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

\u00a3

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

\u00a3

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: \u2264 4 weeks of randomization; if assessments required \u2264 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: \u2264 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered \u2018cured\u2019) should have HCV RNAPCR testing performed on \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until \u2264 grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n\u00a3 Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

\n
", + "parent": "6.1" + }, + { + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "text": "

See section 7 Study Parameters.

", + "parent": null + }, + { + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "text": "
\n

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

\n
", + "parent": "7" + }, + { + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "text": "
\n

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin \u2264 4 weeks of randomization to protocol therapy:\n\u2022

\n

Medical history

\n

\u2022

\n

Assessment of baseline signs and symptoms

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\u2022

\n

PT with INR

\n

\u2022

\n

Urinalysis

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n\u2022 known or suspected past hepatitis B infection\n\u2022 blood transfusion(s) prior to 1990\n\u2022 current or prior IV drug users\n\u2022 current or prior dialysis\n\u2022 household contact with hepatitis B infected patient(s)\n\u2022 current or prior high-risk sexual activity\n\u2022 body piercing or tattoos\n\u2022 mother known to have hepatitis B\n\u2022 history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon \u2018curative\u2019 treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

\n
", + "parent": "7.1" + }, + { + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "text": "
\n

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within \u2264 7 days of Cycle 1 Day 1.

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\u2022

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\u2022

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

\n
", + "parent": "7.1" + }, + { + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "text": "
\n

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to \u2264 grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\u2022

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

\n
", + "parent": "7.1" + }, + { + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "text": "
\n

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until \u2264 grade 1\nor if the grade is >1, the event must be permanent and stable.\n\u2022

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\u2022

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n\u2022

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

\n
", + "parent": "7.1" + }, + { + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "text": "
\n

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264 grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

\n
", + "parent": "7.1" + }, + { + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "text": "

See section 8 Drug Formulation and Procurement.

", + "parent": null + }, + { + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "text": "

See section 8.1 Everolimus.

", + "parent": "8" + }, + { + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "text": "
\n

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

\n
", + "parent": "8.1" + }, + { + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "text": "
\n

Everolimus should be stored at room temperature between 20\u00b0C to 25\u00b0C (68\u00b0F to 77\u00b0F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n\u2022

\n

Everolimus/placebo dose may be taken with or without food.

\n

\u2022

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\u2022

\n

Vomited doses should not be replaced.

\n

\u2022

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

\n
", + "parent": "8.1" + }, + { + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "text": "

See section 8.1.3 Handling, Dispensing and Administration.

", + "parent": "8.1" + }, + { + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "text": "
\n

The most common adverse reactions (incidence \u2265 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence \u2265 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

\n
", + "parent": "8.1" + }, + { + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "text": "
\n

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n\u2022

\n

Amount received and placed in storage area.

\n

\u2022

\n

Amount currently in storage area.

\n

\u2022

\n

Label ID number or batch number.

\n

\u2022

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\u2022

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\u2022

\n

Amount transferred to another area for dispensing or storage.

\n

\u2022

\n

Non-study disposition (e.g., wasted, broken).

\n

\u2022

\n

Amount returned to manufacturer, if applicable

\n

\u2022

\n

Amount destroyed at study site, if applicable

\n
", + "parent": "8.1" + }, + { + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "text": "
\n

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site\u2019s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

\n
", + "parent": "8.1" + }, + { + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "text": "
\n

8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide\u2122) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2\u00b0-8\u00b0C (36\u00b0-46\u00b0F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex\u00ae Package Insert 1621903 Rev 12/11)\n\u2022 Remove the glass syringe barrel from tray and check that it is not damaged\n\u2022 Remove perforated patient record label from syringe\n\u2022 Peel open the safety needle outer packaging.\n\u2022 Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n\u2022 Twist to lock the needle to the luer container.\n\u2022 Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n\u2022 Remove excess gas from the syringe.\n\u2022 Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle \u2018bevel up\u2019 position is\norientated to the lever arm (Figure 3).\n\u2022 Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n\u2022 Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n\u2022 If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n\u2022 Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex\u00ae treatment groups,\nregardless of the investigator\u2019s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex\u00ae and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex\u00ae If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher\u2019s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

\n
", + "parent": "8" + }, + { + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "text": "

See section 9 Statistical Considerations.

", + "parent": null + }, + { + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "text": "

See section 9.1 Primary Endpoint Analysis.

", + "parent": "9" + }, + { + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "text": "
\n

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

\n
", + "parent": "9" + }, + { + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "text": "
\n

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

\n
", + "parent": "9" + }, + { + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "text": "
\n

10 Adverse Event Reporting

\n
", + "parent": null + }, + { + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "text": "
\n

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator\u2019s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n\u2022

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\u2022

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\u2022

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\u2022

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\u2022

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories \u2018Definite\u2019, \u2018probable\u2019 and \u2018possible\u2019 are considered study drug related.\nCategories \u2018not likely\u2019 and \u2018not related\u2019 are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

\n
", + "parent": "10" + }, + { + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "text": "
\n

10.2 Handling of Serious Adverse Events (SAEs)

\n
", + "parent": "10" + }, + { + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "text": "
\n

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n\u2022

\n

results in death,

\n

\u2022

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\u2022

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\u2022

\n

results in persistent or significant disability/incapacity,

\n

\u2022

\n

is a congenital anomaly/birth defect,

\n

\u2022

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

\n
", + "parent": "10.2" + }, + { + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "text": "
\n

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator\u2019s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM \u2013 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE\u2019s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

\n
", + "parent": "10.2" + }, + { + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "text": "
\n

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

\n
", + "parent": "10" + }, + { + "sectionNumber": "11", + "sectionTitle": "Administrative", + "text": "
\n

11 Administrative

\n
", + "parent": null + }, + { + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "text": "
\n

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "text": "
\n

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "text": "
\n

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "text": "
\n

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "text": "
\n

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "text": "
\n

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "text": "
\n

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

\n
", + "parent": "11" + }, + { + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "text": "
\n

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n\u2022\n\u2022\n\u2022

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

\n
", + "parent": "11" + }, + { + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "text": "
\n

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n\u00b0C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

\u00b5M\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

\u00b5g

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

\n
", + "parent": null + }, + { + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "text": "
\n

13 Appendix A: Eligibility Checklist\n\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n\u2264 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) \u2265 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) \u2265 1.5 x 10 /L and platelet count \u2265 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin \u2265 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin \u2264 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine \u2264 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin \u2265 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND Fasting Triglycerides \u2264 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR \u2264 1.5. (Anticoagulation is allowed if target INR \u2264 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n\u2265 20 mm by chest x-ray, as \u2265 10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n\u2022 Bisphosphonates, Zometa or Xgeva for bone metastases\n\u2022 Hormonal therapy (e.g., AI, Tamoxifen)\n\u2022 a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient\u2019s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

\n
", + "parent": null + }, + { + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "text": "
\n

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

\n
", + "parent": null + }, + { + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "text": "
\n

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John\u2019s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John\u2019s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John\u2019s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA\u2019s\n\u201cGuidance for Industry, Drug Interaction Studies\u201d, the University of Washington\u2019s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

\n
", + "parent": null + }, + { + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "text": "
\n

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient\u2019s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

\n
", + "parent": null + }, + { + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "text": "
\n

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

\n
", + "parent": null + }, + { + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "text": "
\n

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

\n
", + "parent": null + }, + { + "sectionNumber": "19", + "sectionTitle": "References", + "text": "
\n

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex\u00ae) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO\u2019Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses\u2019 Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator\u2019s Statement\n1.

\n

I have carefully read this protocol entitled \u201cRandomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014\u201d (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

\n
", + "parent": null + }, + { + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "text": "

See section 20 Investigator's Statement.

", + "parent": null + } +] \ No newline at end of file diff --git a/output/json/NCT01797120-20260630T1221.json b/output/json/NCT01797120-20260630T1221.json new file mode 100644 index 0000000..5a617a4 --- /dev/null +++ b/output/json/NCT01797120-20260630T1221.json @@ -0,0 +1,7754 @@ +{ + "study": { + "id": "Study_60", + "extensionAttributes": [], + "name": "NCT01797120", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_46", + "url": "tool-version", + "valueString": "1.5.0", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_47", + "url": "usdm-creation-date", + "valueString": "20260630T12:21", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "PrE0102", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "PrE0102", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "PRE-STUDY", + "label": "Pre-Study", + "description": "Occuring before Randomization and Treatment", + "type": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_486", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_487", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "C1D1", + "label": "Cycle 1 Day 1", + "description": "First day fulvestrant is given with everolimus/placebo; start of Induction Phase. Treatment begins within 7 working days of randomization.", + "type": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_489", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_490", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "C1D15", + "label": "Cycle 1 Day 15", + "description": "Second fulvestrant dose (Cycle 1 only) plus safety assessments.", + "type": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_492", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_493", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "C2D1", + "label": "Cycle 2 Day 1", + "description": "Day 1 of Cycle 2 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10038", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_10039", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10040", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "C3D1", + "label": "Cycle 3 Day 1", + "description": "Day 1 of Cycle 3 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10041", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_10042", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10043", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "C4D1", + "label": "Cycle 4 Day 1", + "description": "Day 1 of Cycle 4 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10044", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_10045", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10046", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "C5D1", + "label": "Cycle 5 Day 1", + "description": "Day 1 of Cycle 5 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10047", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_10048", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10049", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "C6D1", + "label": "Cycle 6 Day 1", + "description": "Day 1 of Cycle 6 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10050", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_10051", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10052", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "C7D1", + "label": "Cycle 7 Day 1", + "description": "Day 1 of Cycle 7 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10053", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_10054", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10055", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "C8D1", + "label": "Cycle 8 Day 1", + "description": "Day 1 of Cycle 8 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10056", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_10057", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10058", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "C9D1", + "label": "Cycle 9 Day 1", + "description": "Day 1 of Cycle 9 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10059", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_10060", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10061", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "C10D1", + "label": "Cycle 10 Day 1", + "description": "Day 1 of Cycle 10 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10062", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_10063", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10064", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "C11D1", + "label": "Cycle 11 Day 1", + "description": "Day 1 of Cycle 11 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10065", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_12", + "nextId": "Encounter_14", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_10069", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10070", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_14", + "extensionAttributes": [], + "name": "C12D1", + "label": "Cycle 12 Day 1", + "description": "Day 1 of Cycle 12 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10066", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_14", + "environmentalSettings": [ + { + "id": "Code_10067", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10068", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "EOI_EOT", + "label": "End of Induction / End of Treatment", + "description": "Performed within 30 days of last fulvestrant dose, before moving to the Continuation Phase or directly to Follow-Up.", + "type": { + "id": "Code_10071", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_14", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_10072", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10073", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "CONT_CXD1", + "label": "Continuation Phase Cycle Day 1", + "description": "Day 1 of each 28-day cycle in the Continuation Phase (begins D29 after last Cycle 12 fulvestrant dose); fulvestrant +/- everolimus until progression or unacceptable toxicity. This visit repeats indefinitely - the protocol defines no fixed cycle count for the Continuation Phase, so it cannot be enumerated and is modeled as a single repeating visit.", + "type": { + "id": "Code_10074", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": "Encounter_17", + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_10075", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10076", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_17", + "extensionAttributes": [], + "name": "FU_OFF_THERAPY", + "label": "Follow-Up Off-Therapy", + "description": "Every 3 months for 3 years from randomization; disease progression, survival and new systemic therapy documented.", + "type": { + "id": "Code_10077", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_16", + "nextId": null, + "scheduledAtId": "Timing_17", + "environmentalSettings": [ + { + "id": "Code_10078", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10079", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "ELIGIBILITY ASSESSMENT", + "label": "Eligibility Assessment", + "description": "Determine subject meets eligibility requirements", + "previousId": null, + "nextId": "Activity_1", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "INFORMED CONSENT", + "label": "Informed Consent", + "description": "Informed Consent collected", + "previousId": "Activity_2", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "RANDOMIZATION", + "label": "Randomization", + "description": "Randomization", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "MEDICAL HISTORY", + "label": "Medical History", + "description": "Medical History & Assessment of Baseline Signs and Symptoms", + "previousId": "Activity_19", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "PHYSICAL EXAM", + "label": "Physical Examination", + "description": "Physical Examination", + "previousId": "Activity_3", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "CONCOMITANT MEDS", + "label": "Concomitant Medications", + "description": "Concomitant Medications", + "previousId": "Activity_5", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "VITAL SIGNS", + "label": "Vital Signs", + "description": "Vital Signs (Blood Pressure, Heart Rate, Temperature) and Weight", + "previousId": "Activity_18", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10", + "BiomedicalConcept_11" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "ECOG PERFORMANCE STATUS", + "label": "ECOG Performance Status", + "description": "ECOG performance status", + "previousId": "Activity_6", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5", + "BiomedicalConcept_60" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ADVERSE EVENTS ASSESSMENTS", + "label": "Adverse Event Assessment", + "description": "Adverse Event Assessment", + "previousId": "Activity_4", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_47", + "BiomedicalConcept_48" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "IMAGING SCANS", + "label": "Imaging Scans", + "description": "Tumor imaging scans", + "previousId": "Activity_17", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_73", + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "PT/INR", + "label": "PT with INR", + "description": "prothrombin time and international normalized ratio", + "previousId": "Activity_22", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52", + "BiomedicalConcept_53", + "BiomedicalConcept_54" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "URINALYSIS", + "label": "Urinalysis Labs", + "description": "Urinalysis Labs", + "previousId": "Activity_23", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_26", + "BiomedicalConcept_27", + "BiomedicalConcept_28" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "CBC", + "label": "CBC with differentials, Platelets", + "description": "CBC with differentials, Platelets", + "previousId": "Activity_10", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "CHEMISTRY LABS", + "label": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "description": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "previousId": "Activity_24", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18", + "BiomedicalConcept_19", + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_1", + "BiomedicalConceptSurrogate_8" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "GLUCOSE", + "label": "Fasting Glucose", + "description": "Fasting Glucose", + "previousId": "Activity_8", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "LIPID PROFILE", + "label": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "description": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "HBV-DNA-1", + "label": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "description": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2", + "BiomedicalConceptSurrogate_3", + "BiomedicalConceptSurrogate_4", + "BiomedicalConceptSurrogate_5", + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "HBV-DNA-2", + "label": "HBV DNA", + "description": "HBV DNA", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "HCV", + "label": "HCV RNA-PCR", + "description": "HCV RNA-PCR", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "COMPLIANCE", + "label": "Study Drug Compliance (Pill Diary)", + "description": "Study Drug Compliance (Pill Diary)", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19", + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "PFTS", + "label": "PFTs with DLCO as medically indicatedn", + "description": "PFTs with DLCO as medically indicatedn", + "previousId": "Activity_30", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_7" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "ARM A", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Everolimus 10mg PO QD", + "type": { + "id": "Code_4", + "extensionAttributes": [], + "code": "C174266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Experimental Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "ARM B", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Placebo PO QD", + "type": { + "id": "Code_6", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_7", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Pre-Study Phase", + "label": "Pre-Study Phase", + "description": "Eligibility assessment, up to 28 days prior to C1D1", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Induction Phase", + "label": "Induction Phase", + "description": "From C1D1 until disease progression or discontinuation", + "type": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Continuation Phase", + "label": "Continuation Phase", + "description": "Continuation Phase (until progression or unacceptable toxicity", + "type": { + "id": "Code_813", + "extensionAttributes": [], + "code": "C123452", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "CONTINUATION TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Follow-up Off Therapy", + "label": "Follow-up, off therapy", + "description": "Post-EOT survival and safety follow-up", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "SCREENING_ELEMENT", + "label": "Screening", + "description": "Pre-study eligibility and baseline assessment period (within 4 weeks of randomization).", + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "INDUCTION_EVE_FUL", + "label": "Induction: Fulvestrant + Everolimus", + "description": "Induction treatment for Arm A: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus everolimus 10 mg PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "INDUCTION_PBO_FUL", + "label": "Induction: Fulvestrant + Placebo", + "description": "Induction treatment for Arm B: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus placebo PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_4" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "CONTINUATION_EVE_FUL", + "label": "Continuation: Fulvestrant + Everolimus", + "description": "Continuation treatment for patients originally randomized to everolimus: fulvestrant 500 mg IM D1 every 28-day cycle plus everolimus, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "CONTINUATION_FUL", + "label": "Continuation: Fulvestrant alone", + "description": "Continuation treatment for patients originally randomized to placebo: fulvestrant 500 mg IM D1 every 28-day cycle alone, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_5" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "FOLLOW_UP_ELEMENT", + "label": "Follow-Up Off-Therapy", + "description": "Off-therapy follow-up for disease progression and survival, every 3 months for 3 years from randomization.", + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand for Progression-Free Survival (PFS)", + "label": "Primary Estimand", + "description": "Comparison of PFS between fulvestrant plus everolimus versus fulvestrant plus placebo in AI-resistant HR+ metastatic breast cancer. Constructed retrospectively per ICH E9(R1); this protocol predates the 2019 addendum.", + "populationSummary": "Post-menopausal women with HR+ (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy; ECOG PS 0-1; no prior mTOR inhibitor; up to one prior systemic chemotherapy for metastatic disease. Randomized 1:1; approximately 120 eligible patients.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Composite: death is included as a PFS event (composite endpoint definition per \u00a76.1.6). The time-to-event variable captures whichever occurs first: progression or death.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_2", + "extensionAttributes": [], + "name": "Discontinuation of everolimus due to toxicity", + "label": "Discontinuation of everolimus due to toxicity", + "description": null, + "text": "Patient permanently discontinues everolimus or placebo due to an adverse event but continues on fulvestrant monotherapy.", + "strategy": "Treatment-policy: patient remains on study and continues fulvestrant alone per \u00a75.5. Follow-up for progression and survival continues. PFS events occurring after everolimus discontinuation are included in the primary analysis regardless of treatment status.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_3", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or is lost to follow-up before a PFS event is documented.", + "strategy": "Hypothetical (censoring): patient is censored at the date of last tumor assessment. The estimand implicitly assumes non-informative censoring \u2014 that censored patients would have experienced events at the same rate as those who remained in follow-up.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_4", + "extensionAttributes": [], + "name": "Initiation of prohibited anti-cancer therapy before progression", + "label": "Initiation of prohibited anti-cancer therapy before progression", + "description": null, + "text": "Patient receives a prohibited anti-cancer agent before disease progression is documented.", + "strategy": "Treatment-policy: protocol prohibits new anti-cancer agents before progression (\u00a75.3.4). If such a violation occurred, the patient would remain in the analysis with events counted as observed. No censoring at time of prohibited therapy initiation is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_2", + "extensionAttributes": [], + "name": "Estimand for Overall Survival (OS)", + "label": "Secondary Estimand \u2014 OS", + "description": "Comparison of overall survival between treatment arms. Descriptive; no pre-specified alpha or power.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_2", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_5", + "extensionAttributes": [], + "name": "Discontinuation of study treatment (any reason)", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues all study treatment due to disease progression, toxicity, or other reasons.", + "strategy": "Treatment-policy: all patients who discontinue treatment are followed for survival per \u00a75.5. Deaths after treatment cessation are counted as OS events regardless of reason for discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_6", + "extensionAttributes": [], + "name": "Initiation of subsequent anti-cancer therapy after progression", + "label": "Initiation of subsequent anti-cancer therapy after progression", + "description": null, + "text": "Patient initiates a new anti-cancer regimen after disease progression on study treatment.", + "strategy": "Treatment-policy: OS reflects real-world outcome including the effect of any subsequent therapies. No censoring or adjustment for post-progression treatment is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_7", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or cannot be contacted for survival follow-up.", + "strategy": "Hypothetical (censoring): patient is censored at date of last known alive contact. Non-informative censoring assumed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_3", + "extensionAttributes": [], + "name": "Estimand for Time to Progression (TTP)", + "label": "Secondary Estimand \u2014 TTP", + "description": "Comparison of time to disease progression, excluding deaths as events. Descriptive.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_3", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_8", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Hypothetical (censoring): death without prior progression results in censoring at time of death. This reflects the hypothetical question 'what would the time to progression have been if the patient had not died?' \u2014 the key mechanistic distinction from the PFS estimand.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_9", + "extensionAttributes": [], + "name": "Discontinuation of study treatment", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues study treatment before disease progression.", + "strategy": "Treatment-policy: follow-up for progression continues after treatment discontinuation per \u00a75.5. TTP events occurring after treatment cessation are included.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_4", + "extensionAttributes": [], + "name": "Estimand for Objective Response Rate (ORR)", + "label": "Secondary Estimand \u2014 ORR", + "description": "Between-arm comparison of the proportion of patients achieving confirmed CR or PR in patients with measurable disease. Descriptive.", + "populationSummary": "Subset of randomized eligible patients with at least one measurable lesion at baseline per RECIST v1.1.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_4", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_10", + "extensionAttributes": [], + "name": "Death or progression before first response assessment", + "label": "Death or progression before first response assessment", + "description": null, + "text": "Patient dies or has documented progression before achieving CR or PR at any post-baseline tumor assessment.", + "strategy": "Composite: patients who die or progress without ever achieving a confirmed CR or PR are counted as non-responders in the ORR denominator.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_11", + "extensionAttributes": [], + "name": "Treatment discontinuation before response assessment", + "label": "Treatment discontinuation before response assessment", + "description": null, + "text": "Patient discontinues all study treatment before a post-baseline tumor assessment confirming CR or PR.", + "strategy": "Treatment-policy: patients who discontinue without a prior confirmed response are counted as non-responders. No censoring at time of treatment discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_5", + "extensionAttributes": [], + "name": "Estimand for Clinical Benefit Rate (CBR)", + "label": "Secondary Estimand \u2014 CBR", + "description": "Between-arm comparison of the proportion of patients with CR, PR, or SD maintained for at least 6 months. Descriptive.", + "populationSummary": "All randomized eligible patients including those with measurable and non-measurable disease.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_5", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_12", + "extensionAttributes": [], + "name": "Death or progression before 6-month stable disease threshold", + "label": "Death or progression before 6-month stable disease threshold", + "description": null, + "text": "Patient dies or has documented progression before 6 months of confirmed stable disease, partial response, or complete response.", + "strategy": "Composite: patients who do not achieve and maintain CR, PR, or SD for at least 6 months are counted as not deriving clinical benefit, regardless of cause.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_13", + "extensionAttributes": [], + "name": "Treatment discontinuation before 6-month landmark", + "label": "Treatment discontinuation before 6-month landmark", + "description": null, + "text": "Patient discontinues study treatment before the 6-month landmark required for SD to qualify as clinical benefit.", + "strategy": "Treatment-policy: patients who discontinue and lack tumor assessment confirming \u22656 months of SD are counted as non-responders for CBR.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_6", + "extensionAttributes": [], + "name": "Estimand for Safety and Tolerability", + "label": "Secondary Estimand \u2014 Safety", + "description": "Descriptive characterization of the incidence and severity of adverse events in the safety-evaluable population. No formal hypothesis test.", + "populationSummary": "All patients who received at least one dose of any study treatment. Approximately 65 patients per arm.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_6", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_14", + "extensionAttributes": [], + "name": "Treatment discontinuation", + "label": "Treatment discontinuation", + "description": null, + "text": "Patient permanently discontinues study treatment. AE collection continues for 30 days after last dose of any study drug per \u00a75.5.", + "strategy": "While-on-treatment: TEAEs are collected only during the treatment period and the 30-day post-treatment follow-up window. Adverse events occurring beyond this window are not captured as TEAEs in the primary safety analysis.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_15", + "extensionAttributes": [], + "name": "Dose reduction or interruption of everolimus", + "label": "Dose reduction or interruption of everolimus", + "description": null, + "text": "Patient undergoes dose modification (reduction or temporary interruption) of everolimus or placebo per protocol dose-modification rules.", + "strategy": "Treatment-policy: AEs that prompt dose modification are recorded regardless of the modification. Events are attributed to the randomized treatment arm and included in the safety summary as observed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Hormone Receptor-Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "label": "HR+ AI-Resistant Metastatic Breast Cancer", + "description": "Post-menopausal women with hormone-receptor positive (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy, defined as relapse while receiving adjuvant AI or progressive disease while receiving an AI for metastatic disease.", + "isRareDisease": false, + "codes": [ + { + "id": "Code_7947", + "extensionAttributes": [], + "code": "C9246", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Hormone Receptor-Positive Breast Carcinoma", + "instanceType": "Code" + }, + { + "id": "Code_7948", + "extensionAttributes": [], + "code": "C7771", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Metastatic Breast Carcinoma", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_3", + "StudyIntervention_4", + "StudyIntervention_5" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "Primary Objective", + "label": "Primary Objective", + "description": "To assess progression-free survival in post-menopausal patients with hormone-receptor positive metastatic breast cancer that is resistant to aromatase inhibitor therapy treated with fulvestrant and everolimus compared to fulvestrant alone.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2355", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "Progression-Free Survival (PFS)", + "label": "Progression-Free Survival (PFS)", + "description": "Time from randomization to documented disease progression or death, whichever occurs first. Subjects who have neither progressed nor died are censored at the date of last tumor assessment. Disease progression assessed per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To demonstrate that the addition of everolimus to fulvestrant improves PFS compared to fulvestrant plus placebo (hypothesized median PFS improvement from 5.4 to 9.2 months; HR \u2248 0.59).", + "level": { + "id": "Code_2356", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "Secondary Objective", + "label": "Secondary Objective", + "description": "To describe the safety profile, objective response rate, time to progression, and overall survival in this patient population.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2357", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "Overall Survival (OS)", + "label": "Overall Survival (OS)", + "description": "Time from randomization until death from any cause. Subjects alive at the time of analysis are censored at the date of last follow-up.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize overall survival in the two treatment arms.", + "level": { + "id": "Code_2358", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "Time to Progression (TTP)", + "label": "Time to Progression (TTP)", + "description": "Time from randomization until objective disease progression per RECIST v1.1. Unlike PFS, deaths without prior progression are not counted as events (subjects are censored at time of death).", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To estimate and compare median time to disease progression between treatment arms.", + "level": { + "id": "Code_2359", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "Objective Response Rate (ORR)", + "label": "Objective Response Rate (ORR)", + "description": "Proportion of patients with a confirmed complete response (CR) or partial response (PR) per RECIST v1.1. Assessed in patients with measurable disease at baseline.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients achieving an objective tumor response between treatment arms.", + "level": { + "id": "Code_2360", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "Clinical Benefit Rate (CBR)", + "label": "Clinical Benefit Rate (CBR)", + "description": "Proportion of patients with stable disease (SD) for \u22656 months, partial response (PR), or complete response (CR) \u2014 i.e., CR + PR + SD \u2265 6 months \u2014 per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients deriving clinical benefit (response or prolonged stable disease) between treatment arms.", + "level": { + "id": "Code_2361", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "Safety and Tolerability", + "label": "Safety and Tolerability", + "description": "Incidence, severity (CTCAE v4.0 grade), and type of adverse events, including overall toxicity, grade 3\u20134 toxicities, serious adverse events (SAEs), and second primary cancers. Assessed in all patients who received at least one dose of study treatment.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize and compare the safety profile of fulvestrant plus everolimus versus fulvestrant plus placebo.", + "level": { + "id": "Code_2362", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "MAIN_TIMELINE", + "label": "PrE0102 Main Schedule of Activities Timeline", + "description": "Main timeline spanning Screening, Induction (max 12 x 28-day cycles), Continuation and Follow-Up.", + "mainTimeline": true, + "entryCondition": "Patient randomized 1:1 to Arm A (fulvestrant + everolimus) or Arm B (fulvestrant + placebo).", + "entryId": "ScheduledActivityInstance_1", + "exits": [], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "C1D1_ANCHOR", + "label": "Cycle 1 Day 1 (anchor)", + "description": "Cycle 1 Day 1 (anchor)", + "type": { + "id": "Code_10080", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P0D", + "valueLabel": "Day 1", + "relativeToFrom": { + "id": "Code_10081", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "SCREEN_WINDOW", + "label": "Within 4 weeks before C1D1", + "description": "Within 4 weeks before C1D1", + "type": { + "id": "Code_10082", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "Up to 28 days before", + "relativeToFrom": { + "id": "Code_10083", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": "P0D", + "windowUpper": "P28D", + "windowLabel": "<= 4 weeks before C1D1", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "C1D15_OFFSET", + "label": "14 days after C1D1", + "description": "14 days after C1D1", + "type": { + "id": "Code_10084", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P14D", + "valueLabel": "Day 15", + "relativeToFrom": { + "id": "Code_10085", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "C2D1_OFFSET", + "label": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "description": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "type": { + "id": "Code_10086", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10087", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "C3D1_OFFSET", + "label": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "description": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "type": { + "id": "Code_10088", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10089", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "C4D1_OFFSET", + "label": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "description": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "type": { + "id": "Code_10090", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10091", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "C5D1_OFFSET", + "label": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "description": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "type": { + "id": "Code_10092", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10093", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "C6D1_OFFSET", + "label": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "description": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10094", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_8", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "C7D1_OFFSET", + "label": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "description": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10095", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_9", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "C8D1_OFFSET", + "label": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "description": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "type": { + "id": "Code_10096", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10097", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_10", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "C9D1_OFFSET", + "label": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "description": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "type": { + "id": "Code_10098", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10099", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "C10D1_OFFSET", + "label": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "description": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "type": { + "id": "Code_10100", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10101", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "C11D1_OFFSET", + "label": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "description": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "type": { + "id": "Code_10102", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10103", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "C12D1_OFFSET", + "label": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "description": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "type": { + "id": "Code_10104", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10105", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "EOI_OFFSET", + "label": "End of Induction", + "description": "End of Induction", + "type": { + "id": "Code_10106", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P30D", + "valueLabel": "within 30 days of last dose", + "relativeToFrom": { + "id": "Code_10107", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": "P0D", + "windowUpper": "P30D", + "windowLabel": "within 30 days of last fulvestrant dose", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "CONT_OFFSET", + "label": "Continuation Day 1", + "description": "Continuation Day 1", + "type": { + "id": "Code_10108", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "D29 after last Cycle 12 dose", + "relativeToFrom": { + "id": "Code_10109", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + }, + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "FU_OFFSET", + "label": "Every 3 months follow-up", + "description": "Every 3 months follow-up", + "type": { + "id": "Code_10110", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P84D", + "valueLabel": "Every 3 months (12 weeks)", + "relativeToFrom": { + "id": "Code_10111", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SAI_PRESTUDY", + "label": "Pre-Study", + "description": "Pre-Study", + "defaultConditionId": "ScheduledActivityInstance_2", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SAI_C1D1", + "label": "Cycle 1 Day 1", + "description": "Cycle 1 Day 1", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "SAI_C1D15", + "label": "Cycle 1 Day 15", + "description": "Cycle 1 Day 15", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "SAI_C2D1", + "label": "Cycle 2 Day 1", + "description": "Cycle 2 Day 1", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "SAI_C3D1", + "label": "Cycle 3 Day 1", + "description": "Cycle 3 Day 1", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "SAI_C4D1", + "label": "Cycle 4 Day 1", + "description": "Cycle 4 Day 1", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "SAI_C5D1", + "label": "Cycle 5 Day 1", + "description": "Cycle 5 Day 1", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "SAI_C6D1", + "label": "Cycle 6 Day 1", + "description": "Cycle 6 Day 1", + "defaultConditionId": "ScheduledActivityInstance_9", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SAI_C7D1", + "label": "Cycle 7 Day 1", + "description": "Cycle 7 Day 1", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SAI_C8D1", + "label": "Cycle 8 Day 1", + "description": "Cycle 8 Day 1", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "SAI_C9D1", + "label": "Cycle 9 Day 1", + "description": "Cycle 9 Day 1", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "SAI_C10D1", + "label": "Cycle 10 Day 1", + "description": "Cycle 10 Day 1", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_12" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "SAI_C11D1", + "label": "Cycle 11 Day 1", + "description": "Cycle 11 Day 1", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "SAI_C12D1", + "label": "Cycle 12 Day 1", + "description": "Cycle 12 Day 1", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_14" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "SAI_EOI", + "label": "End of Induction / End of Treatment", + "description": "End of Induction / End of Treatment", + "defaultConditionId": "ScheduledDecisionInstance_1", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "SAI_CONT", + "label": "Continuation Phase Cycle Day 1", + "description": "Continuation Phase Cycle Day 1", + "defaultConditionId": "ScheduledDecisionInstance_2", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "SAI_FU", + "label": "Follow-Up Off-Therapy", + "description": "Follow-Up Off-Therapy", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_17" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "SDI_END_INDUCTION", + "label": "Decision: End of Induction (unblinding)", + "description": "Decision: End of Induction (unblinding)", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "No evidence of disease progression after 12 cycles of Induction: patient is unblinded and proceeds to the Continuation Phase.", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "condition": "Disease progression or unacceptable toxicity (or other discontinuation per Sections 5.5/5.6): patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "SDI_CONTINUATION", + "label": "Decision: Continuation Phase progression check", + "description": "Decision: Continuation Phase progression check", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_3", + "extensionAttributes": [], + "condition": "No documented progression and no unacceptable toxicity: continue treatment with the next Continuation cycle (this visit repeats; the protocol sets no fixed Continuation cycle count).", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_4", + "extensionAttributes": [], + "condition": "Documented disease progression or unacceptable toxicity: patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "type": { + "id": "Code_8497", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [], + "dateValues": [], + "amendments": [], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "PrECOG, LLC", + "label": "PrECOG", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7949", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "PrECOG, LLC, 1818 Market Street, Suite 1100, Philadelphia, PA 19103", + "lines": [ + "1818 Market Street", + "Suite 1100" + ], + "city": "Philadelphia", + "district": null, + "state": "PA", + "postalCode": "19103", + "country": { + "id": "Code_7950", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "Novartis Pharmaceuticals Corporation", + "label": "Novartis", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7951", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_7952", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "clinicaltrials.gov", + "label": "clinicaltrials.gov", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9956", + "extensionAttributes": [], + "code": "C188863", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Regulatory Agency", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "National Library of Medicine\n8600 Rockville Pike, Bethesda, MD 20894", + "lines": [ + "National Library of Medicine", + "8600 Rockville Pike" + ], + "city": "Bethesda", + "district": null, + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_9957", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_4", + "extensionAttributes": [], + "name": "VendorLab1", + "label": "Vendor1", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9958", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_4", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9959", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_5", + "extensionAttributes": [], + "name": "VendorLab2", + "label": "Vendor2", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9961", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_5", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9962", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Clinical Study Sponsor", + "label": "Clinical Study Sponsor", + "description": "PrECOG, LLC serves as the clinical study sponsor and coordinating group for this investigator-initiated trial.", + "code": { + "id": "Code_8489", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_2", + "extensionAttributes": [], + "name": "Study Chair", + "label": "Study Chair", + "description": null, + "code": { + "id": "Code_9716", + "extensionAttributes": [], + "code": "C19924", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Principal Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_1", + "extensionAttributes": [], + "name": "Noah Kornblum", + "label": null, + "description": null, + "personName": { + "id": "PersonName_1", + "extensionAttributes": [], + "text": null, + "familyName": "Kornblum", + "givenNames": [ + "Noah" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Study Co-Chair", + "label": "Study Co-Chair", + "description": null, + "code": { + "id": "Code_9717", + "extensionAttributes": [], + "code": "C25936", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "Joseph A. Sparano", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Sparano", + "givenNames": [ + "Joseph", + "A." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Co-Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_4", + "extensionAttributes": [], + "name": "Medical Monitor", + "label": "Medical Monitor", + "description": null, + "code": { + "id": "Code_9718", + "extensionAttributes": [], + "code": "C51876", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Sponsor Medical Expert", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_3", + "extensionAttributes": [], + "name": "Katherine M. Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_3", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "Katherine", + "M." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Medical Monitor", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_5", + "extensionAttributes": [], + "name": "Study Statistician", + "label": "Study Statistician", + "description": null, + "code": { + "id": "Code_9719", + "extensionAttributes": [], + "code": "C51877", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Statistician", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_4", + "extensionAttributes": [], + "name": "Judi Manola", + "label": null, + "description": null, + "personName": { + "id": "PersonName_4", + "extensionAttributes": [], + "text": null, + "familyName": "Manola", + "givenNames": [ + "Judi" + ], + "prefixes": [], + "suffixes": [ + "MS" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Statistician", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_6", + "extensionAttributes": [], + "name": "Study Contact", + "label": "Study Contact", + "description": null, + "code": { + "id": "Code_9720", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_5", + "extensionAttributes": [], + "name": "Carolyn Andrews", + "label": null, + "description": null, + "personName": { + "id": "PersonName_5", + "extensionAttributes": [], + "text": null, + "familyName": "Andrews", + "givenNames": [ + "Carolyn" + ], + "prefixes": [], + "suffixes": [ + "RN" + ], + "instanceType": "PersonName" + }, + "jobTitle": "PrECOG Study Contact", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_7", + "extensionAttributes": [], + "name": "Investigational Product Manufacturer", + "label": "Investigational Product Manufacturer", + "description": "Novartis Pharmaceuticals Corporation supplies everolimus and matching placebo for the study.", + "code": { + "id": "Code_9714", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_8", + "extensionAttributes": [], + "name": "Pharmacovigilance Group", + "label": "Pharmacovigilance Group", + "description": "Novartis Pharmaceuticals Drug Safety and Epidemiology Department (DS&E). Receives SAE notifications from PrECOG within 24 hours of awareness date.", + "code": { + "id": "Code_9715", + "extensionAttributes": [], + "code": "C215673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Pharmacovigilance Group", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_9", + "extensionAttributes": [], + "name": "Primary Data Manager", + "label": "Primary Data Manager", + "description": null, + "code": { + "id": "Code_9963", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_6", + "extensionAttributes": [], + "name": "Valerie S", + "label": null, + "description": null, + "personName": { + "id": "PersonName_6", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Valerie" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Primary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_10", + "extensionAttributes": [], + "name": "Secondary Data Manager", + "label": "Secondary Data Manager", + "description": null, + "code": { + "id": "Code_9964", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_7", + "extensionAttributes": [], + "name": "Patrick G", + "label": null, + "description": null, + "personName": { + "id": "PersonName_7", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Patrick" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Secondary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_11", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9965", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_4" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_8", + "extensionAttributes": [], + "name": "Eva J", + "label": null, + "description": null, + "personName": { + "id": "PersonName_8", + "extensionAttributes": [], + "text": null, + "familyName": "J", + "givenNames": [ + "Eva" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_12", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9966", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_5" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_9", + "extensionAttributes": [], + "name": "Melissa T", + "label": null, + "description": null, + "personName": { + "id": "PersonName_9", + "extensionAttributes": [], + "text": null, + "familyName": "T", + "givenNames": [ + "Melissa" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_3", + "extensionAttributes": [], + "name": "Fulvestrant + Everolimus (Arm A)", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus Everolimus 10 mg orally once daily.", + "role": { + "id": "Code_10033", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10034", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_4", + "extensionAttributes": [], + "name": "Fulvestrant + Placebo (Arm B)", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus matching oral placebo once daily.", + "role": { + "id": "Code_10036", + "extensionAttributes": [], + "code": "C68609", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Active Comparator", + "instanceType": "Code" + }, + "type": { + "id": "Code_10037", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_5", + "extensionAttributes": [], + "name": "Fulvestrant", + "label": "Fulvestrant", + "description": "Fulvestrant administered on its own in Continuation Phase minus the placebo. Indicates subject PFS while on Fulvestrant + Placebo treatment arm (ARM B).", + "role": { + "id": "Code_10112", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10113", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": "Informed Consent", + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [], + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_8", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ELIGMET", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "synonyms": [ + "Eligibility Criteria Met" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [], + "code": { + "id": "AliasCode_6", + "extensionAttributes": [], + "standardCode": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "synonyms": [ + "MHYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [], + "code": { + "id": "AliasCode_11", + "extensionAttributes": [], + "standardCode": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "synonyms": [ + "Medical History", + "MHTERM" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [], + "code": { + "id": "AliasCode_12", + "extensionAttributes": [], + "standardCode": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ECOG101", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "synonyms": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "reference": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [], + "code": { + "id": "AliasCode_13", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "code": { + "id": "AliasCode_21", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [], + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [], + "code": { + "id": "AliasCode_5688", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5767", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [], + "code": { + "id": "AliasCode_9354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10029", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [], + "code": { + "id": "AliasCode_9355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10030", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [], + "code": { + "id": "AliasCode_767", + "extensionAttributes": [], + "standardCode": { + "id": "Code_807", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [], + "code": { + "id": "AliasCode_768", + "extensionAttributes": [], + "standardCode": { + "id": "Code_808", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [], + "code": { + "id": "AliasCode_5689", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5768", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [], + "code": { + "id": "AliasCode_5690", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5769", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "pH", + "label": "pH", + "synonyms": [ + "PH", + "potential of Hydrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [], + "code": { + "id": "AliasCode_5691", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5770", + "extensionAttributes": [], + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [], + "code": { + "id": "AliasCode_9356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10031", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [], + "code": { + "id": "AliasCode_5692", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5771", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [], + "code": { + "id": "AliasCode_5693", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5772", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event", + "label": "Adverse Event", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_773", + "extensionAttributes": [], + "standardCode": { + "id": "Code_813", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [], + "code": { + "id": "AliasCode_5694", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5773", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [], + "code": { + "id": "AliasCode_775", + "extensionAttributes": [], + "standardCode": { + "id": "Code_815", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RANDOM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Randomization", + "label": "Randomization", + "synonyms": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [], + "code": { + "id": "AliasCode_9357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10032", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "synonyms": [ + "PT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [], + "code": { + "id": "AliasCode_5695", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5774", + "extensionAttributes": [], + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_53", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "synonyms": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [], + "code": { + "id": "AliasCode_5696", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5775", + "extensionAttributes": [], + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/APTTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "synonyms": [ + "APTT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [], + "code": { + "id": "AliasCode_776", + "extensionAttributes": [], + "standardCode": { + "id": "Code_816", + "extensionAttributes": [], + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [], + "code": { + "id": "AliasCode_777", + "extensionAttributes": [], + "standardCode": { + "id": "Code_817", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRIGSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "synonyms": [ + "TRIG", + "Triglycerides" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [], + "code": { + "id": "AliasCode_778", + "extensionAttributes": [], + "standardCode": { + "id": "Code_818", + "extensionAttributes": [], + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [], + "code": { + "id": "AliasCode_534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "HDL", + "HDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [], + "code": { + "id": "AliasCode_5697", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5776", + "extensionAttributes": [], + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "LDL", + "LDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [], + "code": { + "id": "AliasCode_7397", + "extensionAttributes": [], + "standardCode": { + "id": "Code_7476", + "extensionAttributes": [], + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [], + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "code": { + "id": "AliasCode_779", + "extensionAttributes": [], + "standardCode": { + "id": "Code_819", + "extensionAttributes": [], + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [], + "code": { + "id": "AliasCode_5698", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5777", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [], + "code": { + "id": "AliasCode_780", + "extensionAttributes": [], + "standardCode": { + "id": "Code_820", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [], + "code": { + "id": "AliasCode_5699", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5778", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [], + "code": { + "id": "AliasCode_5700", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5779", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [], + "code": { + "id": "AliasCode_5701", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5780", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [], + "code": { + "id": "AliasCode_5702", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5781", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CO2BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "synonyms": [ + "Carbon Dioxide", + "CO2" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [], + "code": { + "id": "AliasCode_5703", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5782", + "extensionAttributes": [], + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [], + "code": { + "id": "AliasCode_5704", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5783", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [], + "code": { + "id": "AliasCode_5705", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5784", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [], + "code": { + "id": "AliasCode_5706", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5785", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [], + "code": { + "id": "AliasCode_5707", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5786", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [], + "code": { + "id": "AliasCode_717", + "extensionAttributes": [], + "standardCode": { + "id": "Code_757", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [], + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [], + "code": { + "id": "AliasCode_5708", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5787", + "extensionAttributes": [], + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TUMERGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Tumor Identification", + "label": "Tumor Identification", + "synonyms": [ + "TUMIDENT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [], + "code": { + "id": "AliasCode_5709", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5788", + "extensionAttributes": [], + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NTRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "synonyms": [ + "NTRGRESP", + "Non-Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [], + "code": { + "id": "AliasCode_5710", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5789", + "extensionAttributes": [], + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "synonyms": [ + "TRGRESP", + "Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [], + "code": { + "id": "AliasCode_5711", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5790", + "extensionAttributes": [], + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OVRLRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Overall Response", + "label": "Overall Response", + "synonyms": [ + "OVRLRESP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [], + "code": { + "id": "AliasCode_763", + "extensionAttributes": [], + "standardCode": { + "id": "Code_803", + "extensionAttributes": [], + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Magnesium Measurement", + "label": "Magnesium Measurement (C64840)", + "description": "A quantitative measurement of the amount of magnesium present in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64840", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_2", + "extensionAttributes": [], + "name": "Hepatitis B DNA Measurement", + "label": "Hepatitis B DNA Measurement (C103404)", + "description": "A measurement of the Hepatitis B virus DNA in a biological specimen", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103404", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_3", + "extensionAttributes": [], + "name": "Hepatitis B Surface Antigen", + "label": "Hepatitis B Virus Surface Antigen Measurement (C64850)", + "description": "A measurement of the surface antigen reaction of a biological specimen to the Hepatitis B virus.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64850", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_4", + "extensionAttributes": [], + "name": "HBsAb+", + "label": "Hepatitis B Surface Antibody Positive (C153243)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153243", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_5", + "extensionAttributes": [], + "name": "HBsAb-", + "label": "Hepatitis B Surface Antibody Negative (C153244)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have not been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153244", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_6", + "extensionAttributes": [], + "name": "HCV RNA Positive", + "label": "HCV RNA Positive (C162042)", + "description": "An indication that hepatitis C RNA has been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C162042", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_7", + "extensionAttributes": [], + "name": "PFTs with DLCO", + "label": "Pulmonary function tests (PFTs) that include DLCO (Diffusing Capacity of the Lungs for Carbon Monoxide) (C38081)", + "description": "A broad range of tests that are performed to assess how well lungs inhale and exhale air and how efficiently they transfer oxygen into the blood.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C38081", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_8", + "extensionAttributes": [], + "name": "Dietary Phosphorus Measurement", + "label": "Dietary Phosphorus Measurement (C184481)", + "description": "A determination of the phosphorus in a nutritional product or meal, or a portion thereof.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C184481", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "Adherence", + "label": "Adherence (C25729)", + "description": "The act of abiding by a stated treatment plan or protocol.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C25729", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Patient Compliance", + "label": "Patient Compliance (C39490)", + "description": "The extent to which a patient conforms to medical advice regarding prescribed regimen, lifestyle, dietary changes, follow-up schedule and other recommendations.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C39490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "Compliance Monitoring", + "label": "Compliance Monitoring (C62737)", + "description": "The act of continuously assessing whether an individual is adhering to their treatment plan.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C62737", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "Non-Compliance With Study Drug", + "label": "Non-Compliance With Study Drug (C49631)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study medication. (NCI)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C49631", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "Non-Compliance with Study Product", + "label": "Non-Compliance with Study Product (C210354)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study product.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C210354", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "Trial Compliance", + "label": "Trial Compliance (C142734)", + "description": "Adherence to clinical trial-related requirements, good clinical practice (GCP) requirements, and the applicable regulatory requirements. (ICH)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C142734", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "

See section 1 Introduction.

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

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor α activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell’s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole ≥ 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

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

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

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

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

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

Fulvestrant (Faslodex®, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex®\n(fulvestrant) Injection for “…the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy”.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

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

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

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

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

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

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican®) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress®) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor® and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor® received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia® in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor® was\napproved for “progressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease” in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor® received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor® received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n•

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

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

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n•\n•\n•

\n

•\n•

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n•

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 μM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or ‘resistant’ (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

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

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator’s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-τ is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-τ and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator’s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator’s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican®, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress®) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator’s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor® for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n•\n•\n•\n•

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor®) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence ≥ 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence ≥\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence ≥ 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence ≥ 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator’s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

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

See section 1.4.3 Clinical Experience.

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

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

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

See section 2 Objectives.

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

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

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

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

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

See section 3 Selection of Patients.

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

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n•\n•

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n•

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n•\n•\n•\n•

\n

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage ≥ 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n•\n•\n•\n•\n•\n•\n•

\n

\n

total white blood cell count (leukocytes, WBC) ≥ 3.0 x 109/L, absolute\nneutrophil count (ANC) ≥ 1.5 x 109/L and platelet count ≥ 100 x 109/L\nhemoglobin ≥ 9 g/dL\nserum bilirubin ≤ 1.5 x ULN\nAST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases)\nserum creatinine ≤ 1.5 x ULN\nserum albumin ≥ 3 g/dL\nfasting serum cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND fasting\ntriglycerides ≤ 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR ≤ 1.5 (Anticoagulation is allowed if target INR ≤ 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin ≤ 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as ≥ 20 mm by chest x-ray, as ≥\n10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n•

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient’s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n•

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

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

See section 4 Randomization Procedures.

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

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

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

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

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

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin ≤ 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

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

See section 5 Treatment Plan.

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

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

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

See section 5.2 Dosing and Administration.

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

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

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

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

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

See section 5.3 Dose Modifications and Toxicity Management.

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

Placebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n•

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is ≤ 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to ≤ grade 1\n(or ≤ grade 2 if baseline values were within the range of grade\n2). If resolution occurs ≤ 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to ≤ grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to ≤ grade 1\n(or ≤ grade 2 if baseline values were within the range of grade\n2). If resolution occurs ≤ 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to ≤ grade 1\nor baseline grade/value.\nIf resolution occurs within ≤ 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to ≤ grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n≤ grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to ≤ grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n≤ grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade ≤ 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, ≥ 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade ≤1

\n

(platelets <50, ≥ 25 x 10 /L)

\n

If resolution occurs ≤ 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, ≥ 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade ≤ 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade ≤1 or baseline\nvalue\nIf AE resolution occurs ≤ 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade ≤ 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade ≤ 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

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

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for ≥ 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence ≥ 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence ≥ 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator’s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

≤ baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n≤ baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n•

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered ‘cured’).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n˃2 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation ˃5x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation ˃5x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed “miracle mouth wash’’ QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using “miracle mouthwash’’.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and “miracle mouth wash”.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and “miracle mouth wash”\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase®) or Periogard® oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol–containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to ≤ grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade ≤\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within ≤ 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to ≤ grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade ≤ 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within ≤ 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to ≤\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

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

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken ≤ 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

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

The following restrictions apply during the entire duration of the study:\n•

\n

No other investigational therapy should be given to patients.

\n

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John’s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week’s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient’s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

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

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

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

See section 5.4 Supportive Care.

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

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to ≤ grade 1 (or if >grade 1, event must be permanent and stable).

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

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n•

\n

Withdrawal of the patient’s consent (patient’s decision to withdraw for any reason)

\n

\n

Termination of the study by PrECOG

\n

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\n

Inability to comply with protocol

\n

\n

Discretion of the investigator

\n

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

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

See section 6 Measurement of Effect.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_6_1", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

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

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to ≤ grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

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

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n•

\n

≥ 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\n

≥ 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\n

≥ 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be ≥ 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with ≥ 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n‘Cystic lesions’ thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

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

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and ≥ 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n•\n•

\n

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A ‘positive’ FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest “increase” in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from “trace” to\n“large”, an increase in nodal disease from “localized” to “widespread”, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of “non-target” lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient’s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n“symptomatic deterioration”. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*‘Non-CR/Non-PD’ is preferred over ‘stable disease’ for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

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

See section 6.1.4 Response Criteria.

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

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

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

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN ≤ 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

£

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

£

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: ≤ 4 weeks of randomization; if assessments required ≤ 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: ≤ 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered ‘cured’) should have HCV RNAPCR testing performed on ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until ≤ grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n£ Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

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

See section 7 Study Parameters.

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

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

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

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin ≤ 4 weeks of randomization to protocol therapy:\n•

\n

Medical history

\n

\n

Assessment of baseline signs and symptoms

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\n

PT with INR

\n

\n

Urinalysis

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n• known or suspected past hepatitis B infection\n• blood transfusion(s) prior to 1990\n• current or prior IV drug users\n• current or prior dialysis\n• household contact with hepatitis B infected patient(s)\n• current or prior high-risk sexual activity\n• body piercing or tattoos\n• mother known to have hepatitis B\n• history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon ‘curative’ treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

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

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within ≤ 7 days of Cycle 1 Day 1.

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered ‘cured’) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered ‘cured’) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

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

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n•

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to ≤ grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

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

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until ≤ grade 1\nor if the grade is >1, the event must be permanent and stable.\n•

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n•

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

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

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until ≤ grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

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

See section 8 Drug Formulation and Procurement.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_8_1", + "text": "

See section 8.1 Everolimus.

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

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

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

Everolimus should be stored at room temperature between 20°C to 25°C (68°F to 77°F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n•

\n

Everolimus/placebo dose may be taken with or without food.

\n

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\n

Vomited doses should not be replaced.

\n

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n•\n•\n•\n•\n•

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

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

See section 8.1.3 Handling, Dispensing and Administration.

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

The most common adverse reactions (incidence ≥ 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence ≥ 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

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

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n•

\n

Amount received and placed in storage area.

\n

\n

Amount currently in storage area.

\n

\n

Label ID number or batch number.

\n

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\n

Amount transferred to another area for dispensing or storage.

\n

\n

Non-study disposition (e.g., wasted, broken).

\n

\n

Amount returned to manufacturer, if applicable

\n

\n

Amount destroyed at study site, if applicable

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

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site’s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

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

8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide™) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2°-8°C (36°-46°F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex® Package Insert 1621903 Rev 12/11)\n• Remove the glass syringe barrel from tray and check that it is not damaged\n• Remove perforated patient record label from syringe\n• Peel open the safety needle outer packaging.\n• Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n• Twist to lock the needle to the luer container.\n• Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n• Remove excess gas from the syringe.\n• Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle ‘bevel up’ position is\norientated to the lever arm (Figure 3).\n• Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n• Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n• If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n• Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex® treatment groups,\nregardless of the investigator’s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex® and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex® If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher’s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

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

See section 9 Statistical Considerations.

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

See section 9.1 Primary Endpoint Analysis.

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

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

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

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

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

10 Adverse Event Reporting

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

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator’s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n•

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories ‘Definite’, ‘probable’ and ‘possible’ are considered study drug related.\nCategories ‘not likely’ and ‘not related’ are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until ≤\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

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

10.2 Handling of Serious Adverse Events (SAEs)

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

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n•

\n

results in death,

\n

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\n

results in persistent or significant disability/incapacity,

\n

\n

is a congenital anomaly/birth defect,

\n

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

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

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator’s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM – 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE’s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

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

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

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

11 Administrative

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

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

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

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

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

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

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

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

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

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

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

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

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

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

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

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n•\n•\n•

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

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

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n°C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

µM\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

µg

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

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

13 Appendix A: Eligibility Checklist\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n≤ 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) ≥ 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) ≥ 1.5 x 10 /L and platelet count ≥ 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin ≥ 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin ≤ 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine ≤ 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin ≥ 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND Fasting Triglycerides ≤ 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR ≤ 1.5. (Anticoagulation is allowed if target INR ≤ 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n≥ 20 mm by chest x-ray, as ≥ 10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n• Bisphosphonates, Zometa or Xgeva for bone metastases\n• Hormonal therapy (e.g., AI, Tamoxifen)\n• a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient’s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n•

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

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

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

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

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John’s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John’s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John’s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA’s\n“Guidance for Industry, Drug Interaction Studies”, the University of Washington’s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

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

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient’s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

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

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

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

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

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

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex®) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO’Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses’ Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator’s Statement\n1.

\n

I have carefully read this protocol entitled “Randomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014” (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

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

See section 20 Investigator's Statement.

", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "NCT01797120.pdf", + "label": "", + "description": "", + "language": {}, + "type": {}, + "templateName": "", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "1", + "status": {}, + "dateValues": [], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "1.5.0" +} diff --git a/output/json/NCT01797120-define-20260630T1224.json b/output/json/NCT01797120-define-20260630T1224.json new file mode 100644 index 0000000..ace4e2a --- /dev/null +++ b/output/json/NCT01797120-define-20260630T1224.json @@ -0,0 +1,4215 @@ +{ + "OID": "MDV.None.Version1.Design1", + "name": "MDV None", + "description": "Data Definitions for None", + "fileOID": "ODM.DEFINE-JSON.None.Version1.Design1", + "creationDateTime": "2026-06-30T12:24:30.926271+00:00", + "odmVersion": "1.3.2", + "fileType": "Snapshot", + "originator": "Define-JSON Processor", + "context": "Other", + "defineVersion": "2.1.0", + "studyOID": "ODM.None.Version1.Design1", + "studyName": null, + "studyDescription": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "protocolName": null, + "itemGroups": [ + { + "OID": "IG.DS", + "name": "DS", + "description": "Disposition", + "domain": "DS", + "purpose": "Tabulation", + "structure": "One record per disposition status or protocol milestone per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "DSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.DS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSSEQ", + "mandatory": true, + "name": "DSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSTERM", + "mandatory": true, + "name": "DSTERM", + "description": "Reported Term for the Disposition Event", + "role": "Topic", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSDECOD", + "mandatory": true, + "name": "DSDECOD", + "description": "Standardized Disposition Term", + "role": "Synonym Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NCOMPLT" + }, + { + "OID": "IT.DS.DSCAT", + "mandatory": false, + "name": "DSCAT", + "description": "Category for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSCAT" + }, + { + "OID": "IT.DS.DSSCAT", + "mandatory": false, + "name": "DSSCAT", + "description": "Subcategory for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSSCAT" + }, + { + "OID": "IT.DS.DSSTDTC", + "mandatory": false, + "name": "DSSTDTC", + "description": "Start Date/Time of Disposition Event", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSSTDY", + "mandatory": false, + "name": "DSSTDY", + "description": "Study Day of Start of Disposition Event", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_1" + }, + { + "OID": "IG.RS", + "name": "RS", + "description": "Disease Response and Clin Classification", + "domain": "RS", + "purpose": "Tabulation", + "structure": "One record per response assessment or clinical classification assessment per time point per visit per subject per assessor per medical evaluator", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "RSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.RS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSSEQ", + "mandatory": true, + "name": "RSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSLNKGRP", + "mandatory": false, + "name": "RSLNKGRP", + "description": "Link Group ID", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSTESTCD", + "mandatory": true, + "name": "RSTESTCD", + "description": "Assessment Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTSCD" + }, + { + "OID": "IT.RS.RSTEST", + "mandatory": true, + "name": "RSTEST", + "description": "Assessment Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTS" + }, + { + "OID": "IT.RS.RSCAT", + "mandatory": false, + "name": "RSCAT", + "description": "Category for Assessment", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSCAT" + }, + { + "OID": "IT.RS.RSORRES", + "mandatory": false, + "name": "RSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSSTRESC", + "mandatory": false, + "name": "RSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSR" + }, + { + "OID": "IT.RS.RSSTRESN", + "mandatory": false, + "name": "RSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSEVAL", + "mandatory": false, + "name": "RSEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.RS.RSEVALID", + "mandatory": false, + "name": "RSEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.RS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSDTC", + "mandatory": false, + "name": "RSDTC", + "description": "Date/Time of Assessment", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_5" + }, + { + "OID": "IG.VS", + "name": "VS", + "description": "Vital Signs", + "domain": "VS", + "purpose": "Tabulation", + "structure": "One record per vital sign measurement per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.VS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSEQ", + "mandatory": true, + "name": "VSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSTESTCD", + "mandatory": true, + "name": "VSTESTCD", + "description": "Vital Signs Test Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTESTCD" + }, + { + "OID": "IT.VS.VSTEST", + "mandatory": true, + "name": "VSTEST", + "description": "Vital Signs Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTEST" + }, + { + "OID": "IT.VS.VSPOS", + "mandatory": false, + "name": "VSPOS", + "description": "Vital Signs Position of Subject", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.VS.VSORRES", + "mandatory": false, + "name": "VSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSORRESU", + "mandatory": false, + "name": "VSORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSSTRESC", + "mandatory": false, + "name": "VSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESN", + "mandatory": false, + "name": "VSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESU", + "mandatory": false, + "name": "VSSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSLOC", + "mandatory": false, + "name": "VSLOC", + "description": "Location of Vital Signs Measurement", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.VS.VSLAT", + "mandatory": false, + "name": "VSLAT", + "description": "Laterality", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.VS.VSLOBXFL", + "mandatory": false, + "name": "VSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.VS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSDTC", + "mandatory": false, + "name": "VSDTC", + "description": "Date/Time of Measurements", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_7" + }, + { + "OID": "IG.UR", + "name": "UR", + "description": "Urinary System Findings", + "domain": "UR", + "purpose": "Tabulation", + "structure": "One record per finding per location per per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "URSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.UR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URSEQ", + "mandatory": true, + "name": "URSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URTESTCD", + "mandatory": true, + "name": "URTESTCD", + "description": "Short Name of Urinary Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTSCD" + }, + { + "OID": "IT.UR.URTEST", + "mandatory": true, + "name": "URTEST", + "description": "Name of Urinary Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTS" + }, + { + "OID": "IT.UR.URORRES", + "mandatory": false, + "name": "URORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URSTRESC", + "mandatory": false, + "name": "URSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URMETHOD", + "mandatory": false, + "name": "URMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.UR.URLOBXFL", + "mandatory": false, + "name": "URLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.UR.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URDTC", + "mandatory": false, + "name": "URDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_27" + }, + { + "OID": "IG.CM", + "name": "CM", + "description": "Concomitant/Prior Medications", + "domain": "CM", + "purpose": "Tabulation", + "structure": "One record per recorded intervention occurrence or constant-dosing interval per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "CMSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.CM.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSEQ", + "mandatory": true, + "name": "CMSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMTRT", + "mandatory": true, + "name": "CMTRT", + "description": "Reported Name of Drug, Med, or Therapy", + "role": "Topic", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDECOD", + "mandatory": false, + "name": "CMDECOD", + "description": "Standardized Medication Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCAT", + "mandatory": false, + "name": "CMCAT", + "description": "Category for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSCAT", + "mandatory": false, + "name": "CMSCAT", + "description": "Subcategory for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMPRESP", + "mandatory": false, + "name": "CMPRESP", + "description": "CM Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMOCCUR", + "mandatory": false, + "name": "CMOCCUR", + "description": "CM Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMINDC", + "mandatory": false, + "name": "CMINDC", + "description": "Indication", + "role": "Record Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMCLAS", + "mandatory": false, + "name": "CMCLAS", + "description": "Medication Class", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCLASCD", + "mandatory": false, + "name": "CMCLASCD", + "description": "Medication Class Code", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMDOSE", + "mandatory": false, + "name": "CMDOSE", + "description": "Dose per Administration", + "role": "Record Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSTXT", + "mandatory": false, + "name": "CMDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSU", + "mandatory": false, + "name": "CMDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.CM.CMDOSFRM", + "mandatory": false, + "name": "CMDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.CM.CMDOSFRQ", + "mandatory": false, + "name": "CMDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.CM.CMROUTE", + "mandatory": false, + "name": "CMROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.CM.CMSTDTC", + "mandatory": false, + "name": "CMSTDTC", + "description": "Start Date/Time of Medication", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMENDTC", + "mandatory": false, + "name": "CMENDTC", + "description": "End Date/Time of Medication", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMSTRF", + "mandatory": false, + "name": "CMSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENRF", + "mandatory": false, + "name": "CMENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTRTPT", + "mandatory": false, + "name": "CMSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTTPT", + "mandatory": false, + "name": "CMSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMENRTPT", + "mandatory": false, + "name": "CMENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENTPT", + "mandatory": false, + "name": "CMENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_50" + }, + { + "OID": "IG.TS", + "name": "TS", + "description": "Trial Summary", + "domain": "TS", + "purpose": "Tabulation", + "structure": "One record per trial summary parameter value", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "TSPARMCD", + "TSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSSEQ", + "mandatory": true, + "name": "TSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSPARMCD", + "mandatory": true, + "name": "TSPARMCD", + "description": "Trial Summary Parameter Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "codeList": "CL.TSPARMCD" + }, + { + "OID": "IT.TS.TSPARM", + "mandatory": true, + "name": "TSPARM", + "description": "Trial Summary Parameter", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TSPARM" + }, + { + "OID": "IT.TS.TSVAL", + "mandatory": false, + "name": "TSVAL", + "description": "Parameter Value", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVALCD", + "mandatory": false, + "name": "TSVALCD", + "description": "Parameter Value Code", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVCDREF", + "mandatory": false, + "name": "TSVCDREF", + "description": "Name of the Reference Terminology", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DICTNAM" + }, + { + "OID": "IT.TS.TSVCDVER", + "mandatory": false, + "name": "TSVCDVER", + "description": "Version of the Reference Terminology", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_51", + "slices": [ + { + "OID": "VL.TS.TSPARMCD", + "name": "VL_TS_TSPARMCD", + "type": "ValueList", + "wasDerivedFrom": "IT.TS.TSPARMCD", + "items": [ + { + "OID": "IT.TS.TSPARMCD.COMPTRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.8c559472" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INDIC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e5769859" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INTTYPE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d3e89d3f" + ] + }, + { + "OID": "IT.TS.TSPARMCD.NARMS", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.efd2a465" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJPRIM", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.fe255586" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.62794b6c" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSPRI", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.4266ae9d" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.1d6311e2" + ] + }, + { + "OID": "IT.TS.TSPARMCD.SPONSOR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e06f8db5" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TITLE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d94c6616" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d368cfb2" + ] + } + ] + } + ] + }, + { + "OID": "IG.TU", + "name": "TU", + "description": "Tumor/Lesion Identification", + "domain": "TU", + "purpose": "Tabulation", + "structure": "One record per identified tumor per subject per assessor", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "TUSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.TU.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUSEQ", + "mandatory": true, + "name": "TUSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUREFID", + "mandatory": false, + "name": "TUREFID", + "description": "Reference ID", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TULNKID", + "mandatory": false, + "name": "TULNKID", + "description": "Link ID", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUTESTCD", + "mandatory": true, + "name": "TUTESTCD", + "description": "Tumor/Lesion ID Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTESTCD" + }, + { + "OID": "IT.TU.TUTEST", + "mandatory": true, + "name": "TUTEST", + "description": "Tumor/Lesion ID Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTEST" + }, + { + "OID": "IT.TU.TUORRES", + "mandatory": false, + "name": "TUORRES", + "description": "Tumor/Lesion ID Result", + "role": "Result Qualifier", + "dataType": "text", + "length": 24, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUSTRESC", + "mandatory": false, + "name": "TUSTRESC", + "description": "Tumor/Lesion ID Result Std. Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 24, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.TUIDRS" + }, + { + "OID": "IT.TU.TULOC", + "mandatory": false, + "name": "TULOC", + "description": "Location of the Tumor/Lesion", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.TU.TULAT", + "mandatory": false, + "name": "TULAT", + "description": "Laterality", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.TU.TUDIR", + "mandatory": false, + "name": "TUDIR", + "description": "Directionality", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DIR" + }, + { + "OID": "IT.TU.TUMETHOD", + "mandatory": false, + "name": "TUMETHOD", + "description": "Method of Identification", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.TU.TULOBXFL", + "mandatory": false, + "name": "TULOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.TU.TUEVAL", + "mandatory": false, + "name": "TUEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.TU.TUEVALID", + "mandatory": false, + "name": "TUEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.TU.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUDTC", + "mandatory": false, + "name": "TUDTC", + "description": "Date/Time of Tumor/Lesion Identification", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_74" + }, + { + "OID": "IG.TA", + "name": "TA", + "description": "Trial Arms", + "domain": "TA", + "purpose": "Tabulation", + "structure": "One record per planned Element per Arm", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ARMCD", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TA.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.ARMCD", + "mandatory": true, + "name": "ARMCD", + "description": "Planned Arm Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARMCD" + }, + { + "OID": "IT.TA.ARM", + "mandatory": true, + "name": "ARM", + "description": "Description of Planned Arm", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARM" + }, + { + "OID": "IT.TA.TAETORD", + "mandatory": true, + "name": "TAETORD", + "description": "Planned Order of Element within Arm", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TA.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TA.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TA.TABRANCH", + "mandatory": false, + "name": "TABRANCH", + "description": "Branch", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.TATRANS", + "mandatory": false, + "name": "TATRANS", + "description": "Transition Rule", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.EPOCH", + "mandatory": true, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + } + ] + }, + { + "OID": "IG.TE", + "name": "TE", + "description": "Trial Elements", + "domain": "TE", + "purpose": "Tabulation", + "structure": "One record per planned Element", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TE.ELEMENT", + "mandatory": true, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TE.TESTRL", + "mandatory": true, + "name": "TESTRL", + "description": "Rule for Start of Element", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ] + }, + { + "OID": "IG.SV", + "name": "SV", + "description": "Subject Visits", + "domain": "SV", + "purpose": "Tabulation", + "structure": "One record per actual or planned visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VISITNUM" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SV.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISITNUM", + "mandatory": true, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Topic", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISIT", + "mandatory": false, + "name": "VISIT", + "description": "Visit Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.SVPRESP", + "mandatory": false, + "name": "SVPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVOCCUR", + "mandatory": false, + "name": "SVOCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVCNTMOD", + "mandatory": false, + "name": "SVCNTMOD", + "description": "Contact Mode", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.CNTMODE" + }, + { + "OID": "IT.SV.SVSTDTC", + "mandatory": false, + "name": "SVSTDTC", + "description": "Start Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SV.SVENDTC", + "mandatory": false, + "name": "SVENDTC", + "description": "End Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + }, + { + "OID": "IG.SE", + "name": "SE", + "description": "Subject Elements", + "domain": "SE", + "purpose": "Tabulation", + "structure": "One record per actual Element per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SESTDTC" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.SESEQ", + "mandatory": true, + "name": "SESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.SE.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.SE.EPOCH", + "mandatory": false, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + }, + { + "OID": "IT.SE.SESTDTC", + "mandatory": true, + "name": "SESTDTC", + "description": "Start Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SE.SEENDTC", + "mandatory": false, + "name": "SEENDTC", + "description": "End Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + } + ], + "conditions": [ + { + "OID": "COND.TS.TSPARMCD.4b2c750e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "COMPTRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.82dcbb4a", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INDIC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.de0404c1", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INTTYPE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.1d8ed13f", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "NARMS" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.cccc9db0", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJPRIM" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.863c5858", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.69b92c86", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSPRI" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.df99032e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.5b1e67a5", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "SPONSOR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.90f47ac3", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TITLE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.e2190e21", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + } + ], + "whereClauses": [ + { + "OID": "WC.TS.8c559472", + "conditions": [ + "COND.TS.TSPARMCD.4b2c750e" + ] + }, + { + "OID": "WC.TS.e5769859", + "conditions": [ + "COND.TS.TSPARMCD.82dcbb4a" + ] + }, + { + "OID": "WC.TS.d3e89d3f", + "conditions": [ + "COND.TS.TSPARMCD.de0404c1" + ] + }, + { + "OID": "WC.TS.efd2a465", + "conditions": [ + "COND.TS.TSPARMCD.1d8ed13f" + ] + }, + { + "OID": "WC.TS.fe255586", + "conditions": [ + "COND.TS.TSPARMCD.cccc9db0" + ] + }, + { + "OID": "WC.TS.62794b6c", + "conditions": [ + "COND.TS.TSPARMCD.863c5858" + ] + }, + { + "OID": "WC.TS.4266ae9d", + "conditions": [ + "COND.TS.TSPARMCD.69b92c86" + ] + }, + { + "OID": "WC.TS.1d6311e2", + "conditions": [ + "COND.TS.TSPARMCD.df99032e" + ] + }, + { + "OID": "WC.TS.e06f8db5", + "conditions": [ + "COND.TS.TSPARMCD.5b1e67a5" + ] + }, + { + "OID": "WC.TS.d94c6616", + "conditions": [ + "COND.TS.TSPARMCD.90f47ac3" + ] + }, + { + "OID": "WC.TS.d368cfb2", + "conditions": [ + "COND.TS.TSPARMCD.e2190e21" + ] + } + ], + "codeLists": [ + { + "OID": "CL.ARMCD", + "name": "ARM Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ARM", + "name": "ARM", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ELEMENT", + "name": "Description of Element", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Screening" + }, + { + "codedValue": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.ETCD", + "name": "Element Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SCREENING_ELEMENT", + "decode": "Screening" + }, + { + "codedValue": "INDUCTION_EVE_FUL", + "decode": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "INDUCTION_PBO_FUL", + "decode": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "CONTINUATION_EVE_FUL", + "decode": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "CONTINUATION_FUL", + "decode": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "FOLLOW_UP_ELEMENT", + "decode": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.EPOCH", + "name": "Epoch", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99079", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Pre-Study Phase", + "coding": { + "code": "C202487", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Induction Phase", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Continuation Phase", + "coding": { + "code": "C123452", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Follow-up Off Therapy", + "coding": { + "code": "C202578", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.NCOMPLT", + "name": "Completion/Reason for Non-Completion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66727", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSCAT", + "name": "Category of Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74558", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSSCAT", + "name": "Subcategory for Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C170443", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTSCD", + "name": "Oncology Response Assessment Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96782", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTS", + "name": "Oncology Response Assessment Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96781", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSCAT", + "name": "Category of Oncology Response Assessment", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C124298", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSR", + "name": "Oncology Response Assessment Result", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96785", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EVAL", + "name": "Evaluator", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78735", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MEDEVAL", + "name": "Medical Evaluator Identifier", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96777", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTESTCD", + "name": "Vital Signs Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66741", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTEST", + "name": "Vital Signs Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.POSITION", + "name": "Position", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71148", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSRESU", + "name": "Units for Vital Signs Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66770", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LOC", + "name": "Anatomical Location", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74456", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LAT", + "name": "Laterality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99073", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY", + "name": "No Yes Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTESTCD", + "name": "Laboratory Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C65047", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTEST", + "name": "Laboratory Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67154", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.UNIT", + "name": "Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71620", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTSCD", + "name": "Urinary System Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129942", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTS", + "name": "Urinary System Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129941", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.METHOD", + "name": "Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C85492", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FRM", + "name": "Dosage Form", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66726", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FREQ", + "name": "Frequency", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71113", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ROUTE", + "name": "Route of Administration Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66729", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.STENRF", + "name": "Relation to Reference Period", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66728", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARMCD", + "name": "Trial Summary Parameter Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66738", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARM", + "name": "Trial Summary Parameter Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DICTNAM", + "name": "Dictionary Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66788", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTESTCD", + "name": "Tumor or Lesion Identification Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96784", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTEST", + "name": "Tumor or Lesion Identification Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96783", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUIDRS", + "name": "Tumor or Lesion Identification Test Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C123650", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DIR", + "name": "Directionality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99074", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.CNTMODE", + "name": "Mode of Subject Contact", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C171445", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "IN PERSON", + "decode": "In-Person", + "coding": { + "code": "C175574", + "codeSystem": "nci:ExtCodeID" + } + } + ] + } + ], + "methods": [], + "comments": [], + "standards": [ + { + "OID": "STD.SDTMIG", + "name": "SDTMIG", + "type": "IG", + "version": "3.4", + "status": "FINAL" + }, + { + "OID": "STD.SDTMCT", + "name": "CDISC/NCI", + "type": "CT", + "version": "2026-03-27", + "status": "FINAL", + "publishingSet": "SDTM" + } + ], + "annotatedCRF": [], + "concepts": [ + { + "OID": "CONC.BiomedicalConcept_1", + "name": "Informed Consent", + "label": "Informed Consent", + "aliases": [ + "Informed Consent Obtained" + ], + "href": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [], + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_2", + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "aliases": [ + "Eligibility Criteria Met" + ], + "href": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [], + "coding": [ + { + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_3", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "aliases": [ + "MHYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [], + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_4", + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "aliases": [ + "Medical History", + "MHTERM" + ], + "href": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [], + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_5", + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "aliases": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "href": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [], + "coding": [ + { + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_6", + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "coding": [ + { + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_7", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_8", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_9", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_10", + "name": "Body Temperature", + "label": "Body Temperature", + "aliases": [ + "Temperature" + ], + "href": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [], + "coding": [ + { + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_11", + "name": "Body Weight", + "label": "Body Weight", + "aliases": [ + "WEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [], + "coding": [ + { + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_18", + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "aliases": [ + "ALT", + "SGPT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [], + "coding": [ + { + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_19", + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "aliases": [ + "AST", + "SGOT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [], + "coding": [ + { + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_20", + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_21", + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "aliases": [ + "Creatinine" + ], + "href": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [], + "coding": [ + { + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_22", + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "aliases": [ + "Albumin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [], + "coding": [ + { + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_26", + "name": "pH", + "label": "pH", + "aliases": [ + "PH", + "potential of Hydrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [], + "coding": [ + { + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_27", + "name": "Color Assessment", + "label": "Color Assessment", + "aliases": [ + "COLOR", + "Color" + ], + "href": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [], + "coding": [ + { + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_28", + "name": "Specific Gravity", + "label": "Specific Gravity", + "aliases": [ + "SPGRAV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [], + "coding": [ + { + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_47", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_48", + "name": "Adverse Event", + "label": "Adverse Event", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_49", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "aliases": [ + "CMYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [], + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_50", + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "aliases": [ + "Concomitant Medication" + ], + "href": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [], + "coding": [ + { + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_51", + "name": "Randomization", + "label": "Randomization", + "aliases": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [], + "coding": [ + { + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_52", + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "aliases": [ + "PT" + ], + "href": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [], + "coding": [ + { + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_53", + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "aliases": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "href": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [], + "coding": [ + { + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_54", + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "aliases": [ + "APTT" + ], + "href": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [], + "coding": [ + { + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_55", + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_56", + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "aliases": [ + "TRIG", + "Triglycerides" + ], + "href": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [], + "coding": [ + { + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_57", + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "aliases": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [], + "coding": [ + { + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_58", + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "HDL", + "HDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [], + "coding": [ + { + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_59", + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "LDL", + "LDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [], + "coding": [ + { + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_60", + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "coding": [ + { + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_61", + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "aliases": [ + "WBC", + "White Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [], + "coding": [ + { + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_62", + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "aliases": [ + "RBC", + "Red Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [], + "coding": [ + { + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_63", + "name": "Platelet Count", + "label": "Platelet Count", + "aliases": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [], + "coding": [ + { + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_64", + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "aliases": [ + "Potassium", + "K" + ], + "href": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [], + "coding": [ + { + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_65", + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "aliases": [ + "Sodium", + "NA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [], + "coding": [ + { + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_66", + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "aliases": [ + "Chloride", + "CL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [], + "coding": [ + { + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_67", + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "aliases": [ + "Carbon Dioxide", + "CO2" + ], + "href": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [], + "coding": [ + { + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_68", + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "aliases": [ + "Calcium", + "CA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [], + "coding": [ + { + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_69", + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "aliases": [ + "Urea Nitrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [], + "coding": [ + { + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_70", + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_71", + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "aliases": [ + "Alkaline Phosphatase" + ], + "href": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [], + "coding": [ + { + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_72", + "name": "Urate Measurement", + "label": "Urate Measurement", + "aliases": [ + "Urate", + "Uric Acid" + ], + "href": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [], + "coding": [ + { + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_73", + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [], + "coding": [ + { + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_74", + "name": "Tumor Identification", + "label": "Tumor Identification", + "aliases": [ + "TUMIDENT" + ], + "href": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [], + "coding": [ + { + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_75", + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "aliases": [ + "NTRGRESP", + "Non-Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [], + "coding": [ + { + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_76", + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "aliases": [ + "TRGRESP", + "Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [], + "coding": [ + { + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_77", + "name": "Overall Response", + "label": "Overall Response", + "aliases": [ + "OVRLRESP" + ], + "href": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [], + "coding": [ + { + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response" + } + ] + } + ], + "conceptProperties": [] +} diff --git a/output/json/NCT01797120-define-20260716T1138.json b/output/json/NCT01797120-define-20260716T1138.json new file mode 100644 index 0000000..9d6955f --- /dev/null +++ b/output/json/NCT01797120-define-20260716T1138.json @@ -0,0 +1,11183 @@ +{ + "OID": "MDV.None.Version1.Design1", + "name": "MDV None", + "description": "Data Definitions for None", + "fileOID": "ODM.DEFINE-JSON.None.Version1.Design1", + "creationDateTime": "2026-07-16T11:38:41.433296+00:00", + "odmVersion": "1.3.2", + "fileType": "Snapshot", + "originator": "Define-JSON Processor", + "context": "Other", + "defineVersion": "2.1.0", + "studyOID": "ODM.None.Version1.Design1", + "studyName": null, + "studyDescription": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "protocolName": null, + "itemGroups": [ + { + "OID": "IG.DS", + "name": "DS", + "description": "Disposition", + "domain": "DS", + "purpose": "Tabulation", + "structure": "One record per disposition status or protocol milestone per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "DSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.DS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSSEQ", + "mandatory": true, + "name": "DSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSTERM", + "mandatory": true, + "name": "DSTERM", + "description": "Reported Term for the Disposition Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_228", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSDECOD", + "mandatory": true, + "name": "DSDECOD", + "description": "Standardized Disposition Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_227", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NCOMPLT" + }, + { + "OID": "IT.DS.DSCAT", + "mandatory": false, + "name": "DSCAT", + "description": "Category for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSCAT" + }, + { + "OID": "IT.DS.DSSCAT", + "mandatory": false, + "name": "DSSCAT", + "description": "Subcategory for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSSCAT" + }, + { + "OID": "IT.DS.DSSTDTC", + "mandatory": false, + "name": "DSSTDTC", + "description": "Start Date/Time of Disposition Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_229", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSSTDY", + "mandatory": false, + "name": "DSSTDY", + "description": "Study Day of Start of Disposition Event", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_1" + }, + { + "OID": "IG.RS", + "name": "RS", + "description": "Disease Response and Clin Classification", + "domain": "RS", + "purpose": "Tabulation", + "structure": "One record per response assessment or clinical classification assessment per time point per visit per subject per assessor per medical evaluator", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "RSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.RS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSSEQ", + "mandatory": true, + "name": "RSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSLNKGRP", + "mandatory": false, + "name": "RSLNKGRP", + "description": "Link Group ID", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSTESTCD", + "mandatory": true, + "name": "RSTESTCD", + "description": "Assessment Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTSCD" + }, + { + "OID": "IT.RS.RSTEST", + "mandatory": true, + "name": "RSTEST", + "description": "Assessment Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTS" + }, + { + "OID": "IT.RS.RSCAT", + "mandatory": false, + "name": "RSCAT", + "description": "Category for Assessment", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSCAT" + }, + { + "OID": "IT.RS.RSORRES", + "mandatory": false, + "name": "RSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_250", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSSTRESC", + "mandatory": false, + "name": "RSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSR" + }, + { + "OID": "IT.RS.RSSTRESN", + "mandatory": false, + "name": "RSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSEVAL", + "mandatory": false, + "name": "RSEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.RS.RSEVALID", + "mandatory": false, + "name": "RSEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.RS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSDTC", + "mandatory": false, + "name": "RSDTC", + "description": "Date/Time of Assessment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_251", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_5" + }, + { + "OID": "IG.VS", + "name": "VS", + "description": "Vital Signs", + "domain": "VS", + "purpose": "Tabulation", + "structure": "One record per vital sign measurement per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.VS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSEQ", + "mandatory": true, + "name": "VSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSTESTCD", + "mandatory": true, + "name": "VSTESTCD", + "description": "Vital Signs Test Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTESTCD" + }, + { + "OID": "IT.VS.VSTEST", + "mandatory": true, + "name": "VSTEST", + "description": "Vital Signs Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTEST" + }, + { + "OID": "IT.VS.VSPOS", + "mandatory": false, + "name": "VSPOS", + "description": "Vital Signs Position of Subject", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_254", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.VS.VSORRES", + "mandatory": false, + "name": "VSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_252", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSORRESU", + "mandatory": false, + "name": "VSORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_253", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSSTRESC", + "mandatory": false, + "name": "VSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESN", + "mandatory": false, + "name": "VSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESU", + "mandatory": false, + "name": "VSSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSLOC", + "mandatory": false, + "name": "VSLOC", + "description": "Location of Vital Signs Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_255", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.VS.VSLAT", + "mandatory": false, + "name": "VSLAT", + "description": "Laterality", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_256", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.VS.VSLOBXFL", + "mandatory": false, + "name": "VSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.VS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSDTC", + "mandatory": false, + "name": "VSDTC", + "description": "Date/Time of Measurements", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_257", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_7" + }, + { + "OID": "IG.UR", + "name": "UR", + "description": "Urinary System Findings", + "domain": "UR", + "purpose": "Tabulation", + "structure": "One record per finding per location per per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "URSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.UR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URSEQ", + "mandatory": true, + "name": "URSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URTESTCD", + "mandatory": true, + "name": "URTESTCD", + "description": "Short Name of Urinary Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTSCD" + }, + { + "OID": "IT.UR.URTEST", + "mandatory": true, + "name": "URTEST", + "description": "Name of Urinary Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTS" + }, + { + "OID": "IT.UR.URORRES", + "mandatory": false, + "name": "URORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URSTRESC", + "mandatory": false, + "name": "URSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URMETHOD", + "mandatory": false, + "name": "URMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.UR.URLOBXFL", + "mandatory": false, + "name": "URLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.UR.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URDTC", + "mandatory": false, + "name": "URDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_27" + }, + { + "OID": "IG.CM", + "name": "CM", + "description": "Concomitant/Prior Medications", + "domain": "CM", + "purpose": "Tabulation", + "structure": "One record per recorded intervention occurrence or constant-dosing interval per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "CMSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.CM.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSEQ", + "mandatory": true, + "name": "CMSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMTRT", + "mandatory": true, + "name": "CMTRT", + "description": "Reported Name of Drug, Med, or Therapy", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_317", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDECOD", + "mandatory": false, + "name": "CMDECOD", + "description": "Standardized Medication Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_318", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCAT", + "mandatory": false, + "name": "CMCAT", + "description": "Category for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSCAT", + "mandatory": false, + "name": "CMSCAT", + "description": "Subcategory for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMPRESP", + "mandatory": false, + "name": "CMPRESP", + "description": "CM Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMOCCUR", + "mandatory": false, + "name": "CMOCCUR", + "description": "CM Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMINDC", + "mandatory": false, + "name": "CMINDC", + "description": "Indication", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_320", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMCLAS", + "mandatory": false, + "name": "CMCLAS", + "description": "Medication Class", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_319", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCLASCD", + "mandatory": false, + "name": "CMCLASCD", + "description": "Medication Class Code", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMDOSE", + "mandatory": false, + "name": "CMDOSE", + "description": "Dose per Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_321", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSTXT", + "mandatory": false, + "name": "CMDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_322", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSU", + "mandatory": false, + "name": "CMDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_323", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.CM.CMDOSFRM", + "mandatory": false, + "name": "CMDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_324", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.CM.CMDOSFRQ", + "mandatory": false, + "name": "CMDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_325", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.CM.CMROUTE", + "mandatory": false, + "name": "CMROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_326", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.CM.CMSTDTC", + "mandatory": false, + "name": "CMSTDTC", + "description": "Start Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_327", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMENDTC", + "mandatory": false, + "name": "CMENDTC", + "description": "End Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_328", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMSTRF", + "mandatory": false, + "name": "CMSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_329", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENRF", + "mandatory": false, + "name": "CMENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_332", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTRTPT", + "mandatory": false, + "name": "CMSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_330", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTTPT", + "mandatory": false, + "name": "CMSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_331", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMENRTPT", + "mandatory": false, + "name": "CMENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_333", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENTPT", + "mandatory": false, + "name": "CMENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_334", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_50" + }, + { + "OID": "IG.TS", + "name": "TS", + "description": "Trial Summary", + "domain": "TS", + "purpose": "Tabulation", + "structure": "One record per trial summary parameter value", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "TSPARMCD", + "TSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSSEQ", + "mandatory": true, + "name": "TSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSPARMCD", + "mandatory": true, + "name": "TSPARMCD", + "description": "Trial Summary Parameter Short Name", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_335", + "dataType": "text", + "length": null, + "codeList": "CL.TSPARMCD" + }, + { + "OID": "IT.TS.TSPARM", + "mandatory": true, + "name": "TSPARM", + "description": "Trial Summary Parameter", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_336", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TSPARM" + }, + { + "OID": "IT.TS.TSVAL", + "mandatory": false, + "name": "TSVAL", + "description": "Parameter Value", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_337", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVALCD", + "mandatory": false, + "name": "TSVALCD", + "description": "Parameter Value Code", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_338", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVCDREF", + "mandatory": false, + "name": "TSVCDREF", + "description": "Name of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_339", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DICTNAM" + }, + { + "OID": "IT.TS.TSVCDVER", + "mandatory": false, + "name": "TSVCDVER", + "description": "Version of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_340", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_51", + "slices": [ + { + "OID": "VL.TS.TSPARMCD", + "name": "VL_TS_TSPARMCD", + "type": "ValueList", + "wasDerivedFrom": "IT.TS.TSPARMCD", + "items": [ + { + "OID": "IT.TS.TSPARMCD.COMPTRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.8c559472" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INDIC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e5769859" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INTTYPE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d3e89d3f" + ] + }, + { + "OID": "IT.TS.TSPARMCD.NARMS", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.efd2a465" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJPRIM", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.fe255586" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.62794b6c" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSPRI", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.4266ae9d" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.1d6311e2" + ] + }, + { + "OID": "IT.TS.TSPARMCD.SPONSOR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e06f8db5" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TITLE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d94c6616" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d368cfb2" + ] + } + ] + } + ] + }, + { + "OID": "IG.TU", + "name": "TU", + "description": "Tumor/Lesion Identification", + "domain": "TU", + "purpose": "Tabulation", + "structure": "One record per identified tumor per subject per assessor", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "TUSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.TU.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUSEQ", + "mandatory": true, + "name": "TUSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUREFID", + "mandatory": false, + "name": "TUREFID", + "description": "Reference ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_455", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TULNKID", + "mandatory": false, + "name": "TULNKID", + "description": "Link ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_456", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUTESTCD", + "mandatory": true, + "name": "TUTESTCD", + "description": "Tumor/Lesion ID Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTESTCD" + }, + { + "OID": "IT.TU.TUTEST", + "mandatory": true, + "name": "TUTEST", + "description": "Tumor/Lesion ID Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTEST" + }, + { + "OID": "IT.TU.TUORRES", + "mandatory": false, + "name": "TUORRES", + "description": "Tumor/Lesion ID Result", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_448", + "dataType": "text", + "length": 24, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUSTRESC", + "mandatory": false, + "name": "TUSTRESC", + "description": "Tumor/Lesion ID Result Std. Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 24, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.TUIDRS" + }, + { + "OID": "IT.TU.TULOC", + "mandatory": false, + "name": "TULOC", + "description": "Location of the Tumor/Lesion", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_449", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.TU.TULAT", + "mandatory": false, + "name": "TULAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_450", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.TU.TUDIR", + "mandatory": false, + "name": "TUDIR", + "description": "Directionality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_451", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DIR" + }, + { + "OID": "IT.TU.TUMETHOD", + "mandatory": false, + "name": "TUMETHOD", + "description": "Method of Identification", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_452", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.TU.TULOBXFL", + "mandatory": false, + "name": "TULOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.TU.TUEVAL", + "mandatory": false, + "name": "TUEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_453", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.TU.TUEVALID", + "mandatory": false, + "name": "TUEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_454", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.TU.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUDTC", + "mandatory": false, + "name": "TUDTC", + "description": "Date/Time of Tumor/Lesion Identification", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_457", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_74" + }, + { + "OID": "IG.TA", + "name": "TA", + "description": "Trial Arms", + "domain": "TA", + "purpose": "Tabulation", + "structure": "One record per planned Element per Arm", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ARMCD", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TA.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.ARMCD", + "mandatory": true, + "name": "ARMCD", + "description": "Planned Arm Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARMCD" + }, + { + "OID": "IT.TA.ARM", + "mandatory": true, + "name": "ARM", + "description": "Description of Planned Arm", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARM" + }, + { + "OID": "IT.TA.TAETORD", + "mandatory": true, + "name": "TAETORD", + "description": "Planned Order of Element within Arm", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TA.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TA.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TA.TABRANCH", + "mandatory": false, + "name": "TABRANCH", + "description": "Branch", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.TATRANS", + "mandatory": false, + "name": "TATRANS", + "description": "Transition Rule", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.EPOCH", + "mandatory": true, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + } + ] + }, + { + "OID": "IG.TE", + "name": "TE", + "description": "Trial Elements", + "domain": "TE", + "purpose": "Tabulation", + "structure": "One record per planned Element", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TE.ELEMENT", + "mandatory": true, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TE.TESTRL", + "mandatory": true, + "name": "TESTRL", + "description": "Rule for Start of Element", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ] + }, + { + "OID": "IG.SV", + "name": "SV", + "description": "Subject Visits", + "domain": "SV", + "purpose": "Tabulation", + "structure": "One record per actual or planned visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VISITNUM" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SV.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISITNUM", + "mandatory": true, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Topic", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISIT", + "mandatory": false, + "name": "VISIT", + "description": "Visit Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.SVPRESP", + "mandatory": false, + "name": "SVPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVOCCUR", + "mandatory": false, + "name": "SVOCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVCNTMOD", + "mandatory": false, + "name": "SVCNTMOD", + "description": "Contact Mode", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.CNTMODE" + }, + { + "OID": "IT.SV.SVSTDTC", + "mandatory": false, + "name": "SVSTDTC", + "description": "Start Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SV.SVENDTC", + "mandatory": false, + "name": "SVENDTC", + "description": "End Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + }, + { + "OID": "IG.SE", + "name": "SE", + "description": "Subject Elements", + "domain": "SE", + "purpose": "Tabulation", + "structure": "One record per actual Element per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SESTDTC" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.SESEQ", + "mandatory": true, + "name": "SESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.SE.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.SE.EPOCH", + "mandatory": false, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + }, + { + "OID": "IT.SE.SESTDTC", + "mandatory": true, + "name": "SESTDTC", + "description": "Start Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SE.SEENDTC", + "mandatory": false, + "name": "SEENDTC", + "description": "End Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + } + ], + "conditions": [ + { + "OID": "COND.TS.TSPARMCD.4b2c750e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "COMPTRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.82dcbb4a", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INDIC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.de0404c1", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INTTYPE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.1d8ed13f", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "NARMS" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.cccc9db0", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJPRIM" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.863c5858", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.69b92c86", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSPRI" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.df99032e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.5b1e67a5", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "SPONSOR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.90f47ac3", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TITLE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.e2190e21", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + } + ], + "whereClauses": [ + { + "OID": "WC.TS.8c559472", + "conditions": [ + "COND.TS.TSPARMCD.4b2c750e" + ] + }, + { + "OID": "WC.TS.e5769859", + "conditions": [ + "COND.TS.TSPARMCD.82dcbb4a" + ] + }, + { + "OID": "WC.TS.d3e89d3f", + "conditions": [ + "COND.TS.TSPARMCD.de0404c1" + ] + }, + { + "OID": "WC.TS.efd2a465", + "conditions": [ + "COND.TS.TSPARMCD.1d8ed13f" + ] + }, + { + "OID": "WC.TS.fe255586", + "conditions": [ + "COND.TS.TSPARMCD.cccc9db0" + ] + }, + { + "OID": "WC.TS.62794b6c", + "conditions": [ + "COND.TS.TSPARMCD.863c5858" + ] + }, + { + "OID": "WC.TS.4266ae9d", + "conditions": [ + "COND.TS.TSPARMCD.69b92c86" + ] + }, + { + "OID": "WC.TS.1d6311e2", + "conditions": [ + "COND.TS.TSPARMCD.df99032e" + ] + }, + { + "OID": "WC.TS.e06f8db5", + "conditions": [ + "COND.TS.TSPARMCD.5b1e67a5" + ] + }, + { + "OID": "WC.TS.d94c6616", + "conditions": [ + "COND.TS.TSPARMCD.90f47ac3" + ] + }, + { + "OID": "WC.TS.d368cfb2", + "conditions": [ + "COND.TS.TSPARMCD.e2190e21" + ] + } + ], + "codeLists": [ + { + "OID": "CL.ARMCD", + "name": "ARM Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ARM", + "name": "ARM", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ELEMENT", + "name": "Description of Element", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Screening" + }, + { + "codedValue": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.ETCD", + "name": "Element Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SCREENING_ELEMENT", + "decode": "Screening" + }, + { + "codedValue": "INDUCTION_EVE_FUL", + "decode": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "INDUCTION_PBO_FUL", + "decode": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "CONTINUATION_EVE_FUL", + "decode": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "CONTINUATION_FUL", + "decode": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "FOLLOW_UP_ELEMENT", + "decode": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.EPOCH", + "name": "Epoch", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99079", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Pre-Study Phase", + "coding": { + "code": "C202487", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Induction Phase", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Continuation Phase", + "coding": { + "code": "C123452", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Follow-up Off Therapy", + "coding": { + "code": "C202578", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.ad42d7e1", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "INFORMED CONSENT OBTAINED", + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED" + } + ] + } + ] + }, + { + "OID": "CL.65a3e8d0", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ELIGIBILITY CRITERIA MET", + "coding": [ + { + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ELIGIBILITY CRITERIA MET" + } + ] + } + ] + }, + { + "OID": "CL.7cfd6cc5", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "mmHg", + "coding": [ + { + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg" + } + ] + } + ] + }, + { + "OID": "CL.20024ecd", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "beats/min", + "coding": [ + { + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min" + } + ] + } + ] + }, + { + "OID": "CL.9e69169e", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM OR PLASMA", + "coding": [ + { + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA" + } + ] + } + ] + }, + { + "OID": "CL.5183f82c", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "URINE", + "coding": [ + { + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE" + } + ] + } + ] + }, + { + "OID": "CL.b6e07c4c", + "name": "TSPARMCD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RANDOM", + "coding": [ + { + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "RANDOM" + } + ] + } + ] + }, + { + "OID": "CL.3705a725", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "s", + "coding": [ + { + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s" + } + ] + } + ] + }, + { + "OID": "CL.af8f8a19", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BLOOD", + "coding": [ + { + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD" + } + ] + } + ] + }, + { + "OID": "CL.dab673be", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RATIO", + "coding": [ + { + "code": "C44256", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RATIO" + } + ] + } + ] + }, + { + "OID": "CL.0fe19c26", + "name": "TUORRES Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "TARGET", + "coding": [ + { + "code": "C94520", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "TARGET" + } + ] + } + ] + }, + { + "OID": "CL.NCOMPLT", + "name": "Completion/Reason for Non-Completion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66727", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSCAT", + "name": "Category of Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74558", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSSCAT", + "name": "Subcategory for Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C170443", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTSCD", + "name": "Oncology Response Assessment Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96782", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTS", + "name": "Oncology Response Assessment Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96781", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSCAT", + "name": "Category of Oncology Response Assessment", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C124298", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSR", + "name": "Oncology Response Assessment Result", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96785", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EVAL", + "name": "Evaluator", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78735", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MEDEVAL", + "name": "Medical Evaluator Identifier", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96777", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTESTCD", + "name": "Vital Signs Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66741", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTEST", + "name": "Vital Signs Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.POSITION", + "name": "Position", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71148", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSRESU", + "name": "Units for Vital Signs Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66770", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LOC", + "name": "Anatomical Location", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74456", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LAT", + "name": "Laterality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99073", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY", + "name": "No Yes Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTESTCD", + "name": "Laboratory Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C65047", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTEST", + "name": "Laboratory Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67154", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.UNIT", + "name": "Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71620", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTSCD", + "name": "Urinary System Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129942", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTS", + "name": "Urinary System Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129941", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.METHOD", + "name": "Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C85492", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FRM", + "name": "Dosage Form", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66726", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FREQ", + "name": "Frequency", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71113", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ROUTE", + "name": "Route of Administration Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66729", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.STENRF", + "name": "Relation to Reference Period", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66728", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARMCD", + "name": "Trial Summary Parameter Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66738", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "RANDOM", + "decode": "Trial is Randomized", + "coding": { + "code": "C25196", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.TSPARM", + "name": "Trial Summary Parameter Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Trial is Randomized", + "decode": "Trial is Randomized", + "coding": { + "code": "C25196", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.DICTNAM", + "name": "Dictionary Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66788", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTESTCD", + "name": "Tumor or Lesion Identification Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96784", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTEST", + "name": "Tumor or Lesion Identification Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96783", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUIDRS", + "name": "Tumor or Lesion Identification Test Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C123650", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DIR", + "name": "Directionality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99074", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.CNTMODE", + "name": "Mode of Subject Contact", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C171445", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "IN PERSON", + "decode": "In-Person", + "coding": { + "code": "C175574", + "codeSystem": "nci:ExtCodeID" + } + } + ] + } + ], + "methods": [], + "comments": [], + "standards": [ + { + "OID": "STD.SDTMIG", + "name": "SDTMIG", + "type": "IG", + "version": "3.4", + "status": "FINAL" + }, + { + "OID": "STD.SDTMCT", + "name": "CDISC/NCI", + "type": "CT", + "version": "2026-03-27", + "status": "FINAL", + "publishingSet": "SDTM" + } + ], + "annotatedCRF": [], + "concepts": [ + { + "OID": "CONC.BiomedicalConcept_1", + "name": "Informed Consent", + "label": "Informed Consent", + "aliases": [ + "Informed Consent Obtained" + ], + "href": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_2", + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "aliases": [ + "Eligibility Criteria Met" + ], + "href": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.65a3e8d0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_3", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "aliases": [ + "MHYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_4", + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "aliases": [ + "Medical History", + "MHTERM" + ], + "href": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "mandatory": true, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "mandatory": true, + "coding": [ + { + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "Medical History Category", + "label": "Medical History Category", + "mandatory": true, + "coding": [ + { + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory" + } + ] + } + ], + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_5", + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "aliases": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "href": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_6", + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "coding": [ + { + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_7", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_8", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_9", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_10", + "name": "Body Temperature", + "label": "Body Temperature", + "aliases": [ + "Temperature" + ], + "href": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_11", + "name": "Body Weight", + "label": "Body Weight", + "aliases": [ + "WEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_18", + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "aliases": [ + "ALT", + "SGPT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_19", + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "aliases": [ + "AST", + "SGOT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_20", + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_21", + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "aliases": [ + "Creatinine" + ], + "href": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_22", + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "aliases": [ + "Albumin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_26", + "name": "pH", + "label": "pH", + "aliases": [ + "PH", + "potential of Hydrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_27", + "name": "Color Assessment", + "label": "Color Assessment", + "aliases": [ + "COLOR", + "Color" + ], + "href": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_28", + "name": "Specific Gravity", + "label": "Specific Gravity", + "aliases": [ + "SPGRAV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_47", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_48", + "name": "Adverse Event", + "label": "Adverse Event", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_49", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "aliases": [ + "CMYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_50", + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "aliases": [ + "Concomitant Medication" + ], + "href": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_51", + "name": "Randomization", + "label": "Randomization", + "aliases": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_52", + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "aliases": [ + "PT" + ], + "href": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_53", + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "aliases": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "href": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.dab673be" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_54", + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "aliases": [ + "APTT" + ], + "href": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_55", + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_56", + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "aliases": [ + "TRIG", + "Triglycerides" + ], + "href": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_57", + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "aliases": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_58", + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "HDL", + "HDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_59", + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "LDL", + "LDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_60", + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "coding": [ + { + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_61", + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "aliases": [ + "WBC", + "White Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_62", + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "aliases": [ + "RBC", + "Red Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_63", + "name": "Platelet Count", + "label": "Platelet Count", + "aliases": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_64", + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "aliases": [ + "Potassium", + "K" + ], + "href": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_65", + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "aliases": [ + "Sodium", + "NA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_66", + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "aliases": [ + "Chloride", + "CL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_409", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_67", + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "aliases": [ + "Carbon Dioxide", + "CO2" + ], + "href": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_410", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_411", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_412", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_413", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_414", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_68", + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "aliases": [ + "Calcium", + "CA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_415", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_416", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_417", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_418", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_69", + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "aliases": [ + "Urea Nitrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_424", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_70", + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_425", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_426", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_427", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_428", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_71", + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "aliases": [ + "Alkaline Phosphatase" + ], + "href": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_434", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_72", + "name": "Urate Measurement", + "label": "Urate Measurement", + "aliases": [ + "Urate", + "Uric Acid" + ], + "href": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_435", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_436", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_437", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_438", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_73", + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_444", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_445", + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_446", + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "mandatory": true, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_447", + "name": "Unit of Length", + "label": "Unit of Length", + "mandatory": true, + "coding": [ + { + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length" + } + ] + } + ], + "coding": [ + { + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_74", + "name": "Tumor Identification", + "label": "Tumor Identification", + "aliases": [ + "TUMIDENT" + ], + "href": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_448", + "name": "TUORRES", + "label": "TUORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ], + "codeList": "CL.0fe19c26" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "TULOC", + "label": "TULOC", + "mandatory": false, + "coding": [ + { + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "TULAT", + "label": "TULAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "TUDIR", + "label": "TUDIR", + "mandatory": false, + "coding": [ + { + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "TUMETHOD", + "label": "TUMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "TUEVAL", + "label": "TUEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_454", + "name": "TUEVALID", + "label": "TUEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_455", + "name": "TUREFID", + "label": "TUREFID", + "mandatory": false, + "coding": [ + { + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_456", + "name": "TULNKID", + "label": "TULNKID", + "mandatory": false, + "coding": [ + { + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_457", + "name": "TUDTC", + "label": "TUDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_75", + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "aliases": [ + "NTRGRESP", + "Non-Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_458", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_76", + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "aliases": [ + "TRGRESP", + "Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_464", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_465", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_77", + "name": "Overall Response", + "label": "Overall Response", + "aliases": [ + "OVRLRESP" + ], + "href": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_466", + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "mandatory": false, + "coding": [ + { + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_467", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_468", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response" + } + ] + } + ], + "conceptProperties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.65a3e8d0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "mandatory": true, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "mandatory": true, + "coding": [ + { + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "Medical History Category", + "label": "Medical History Category", + "mandatory": true, + "coding": [ + { + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.dab673be" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_409", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_410", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_411", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_412", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_413", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_414", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_415", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_416", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_417", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_418", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_424", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_425", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_426", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_427", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_428", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_434", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_435", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_436", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_437", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_438", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_444", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_445", + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_446", + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "mandatory": true, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_447", + "name": "Unit of Length", + "label": "Unit of Length", + "mandatory": true, + "coding": [ + { + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_448", + "name": "TUORRES", + "label": "TUORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ], + "codeList": "CL.0fe19c26" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "TULOC", + "label": "TULOC", + "mandatory": false, + "coding": [ + { + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "TULAT", + "label": "TULAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "TUDIR", + "label": "TUDIR", + "mandatory": false, + "coding": [ + { + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "TUMETHOD", + "label": "TUMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "TUEVAL", + "label": "TUEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_454", + "name": "TUEVALID", + "label": "TUEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_455", + "name": "TUREFID", + "label": "TUREFID", + "mandatory": false, + "coding": [ + { + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_456", + "name": "TULNKID", + "label": "TULNKID", + "mandatory": false, + "coding": [ + { + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_457", + "name": "TUDTC", + "label": "TUDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_458", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_464", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_465", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_466", + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "mandatory": false, + "coding": [ + { + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_467", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_468", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ] +} diff --git a/output/json/NCT01797120-define-latest.json b/output/json/NCT01797120-define-latest.json new file mode 100644 index 0000000..9d6955f --- /dev/null +++ b/output/json/NCT01797120-define-latest.json @@ -0,0 +1,11183 @@ +{ + "OID": "MDV.None.Version1.Design1", + "name": "MDV None", + "description": "Data Definitions for None", + "fileOID": "ODM.DEFINE-JSON.None.Version1.Design1", + "creationDateTime": "2026-07-16T11:38:41.433296+00:00", + "odmVersion": "1.3.2", + "fileType": "Snapshot", + "originator": "Define-JSON Processor", + "context": "Other", + "defineVersion": "2.1.0", + "studyOID": "ODM.None.Version1.Design1", + "studyName": null, + "studyDescription": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "protocolName": null, + "itemGroups": [ + { + "OID": "IG.DS", + "name": "DS", + "description": "Disposition", + "domain": "DS", + "purpose": "Tabulation", + "structure": "One record per disposition status or protocol milestone per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "DSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.DS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSSEQ", + "mandatory": true, + "name": "DSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSTERM", + "mandatory": true, + "name": "DSTERM", + "description": "Reported Term for the Disposition Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_228", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSDECOD", + "mandatory": true, + "name": "DSDECOD", + "description": "Standardized Disposition Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_227", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NCOMPLT" + }, + { + "OID": "IT.DS.DSCAT", + "mandatory": false, + "name": "DSCAT", + "description": "Category for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSCAT" + }, + { + "OID": "IT.DS.DSSCAT", + "mandatory": false, + "name": "DSSCAT", + "description": "Subcategory for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSSCAT" + }, + { + "OID": "IT.DS.DSSTDTC", + "mandatory": false, + "name": "DSSTDTC", + "description": "Start Date/Time of Disposition Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_229", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSSTDY", + "mandatory": false, + "name": "DSSTDY", + "description": "Study Day of Start of Disposition Event", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_1" + }, + { + "OID": "IG.RS", + "name": "RS", + "description": "Disease Response and Clin Classification", + "domain": "RS", + "purpose": "Tabulation", + "structure": "One record per response assessment or clinical classification assessment per time point per visit per subject per assessor per medical evaluator", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "RSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.RS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSSEQ", + "mandatory": true, + "name": "RSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSLNKGRP", + "mandatory": false, + "name": "RSLNKGRP", + "description": "Link Group ID", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSTESTCD", + "mandatory": true, + "name": "RSTESTCD", + "description": "Assessment Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTSCD" + }, + { + "OID": "IT.RS.RSTEST", + "mandatory": true, + "name": "RSTEST", + "description": "Assessment Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRTS" + }, + { + "OID": "IT.RS.RSCAT", + "mandatory": false, + "name": "RSCAT", + "description": "Category for Assessment", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSCAT" + }, + { + "OID": "IT.RS.RSORRES", + "mandatory": false, + "name": "RSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_250", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSSTRESC", + "mandatory": false, + "name": "RSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.ONCRSR" + }, + { + "OID": "IT.RS.RSSTRESN", + "mandatory": false, + "name": "RSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.RS.RSEVAL", + "mandatory": false, + "name": "RSEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.RS.RSEVALID", + "mandatory": false, + "name": "RSEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.RS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.RS.RSDTC", + "mandatory": false, + "name": "RSDTC", + "description": "Date/Time of Assessment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_251", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_5" + }, + { + "OID": "IG.VS", + "name": "VS", + "description": "Vital Signs", + "domain": "VS", + "purpose": "Tabulation", + "structure": "One record per vital sign measurement per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.VS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSEQ", + "mandatory": true, + "name": "VSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSTESTCD", + "mandatory": true, + "name": "VSTESTCD", + "description": "Vital Signs Test Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTESTCD" + }, + { + "OID": "IT.VS.VSTEST", + "mandatory": true, + "name": "VSTEST", + "description": "Vital Signs Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTEST" + }, + { + "OID": "IT.VS.VSPOS", + "mandatory": false, + "name": "VSPOS", + "description": "Vital Signs Position of Subject", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_254", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.VS.VSORRES", + "mandatory": false, + "name": "VSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_252", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSORRESU", + "mandatory": false, + "name": "VSORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_253", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSSTRESC", + "mandatory": false, + "name": "VSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESN", + "mandatory": false, + "name": "VSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESU", + "mandatory": false, + "name": "VSSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSLOC", + "mandatory": false, + "name": "VSLOC", + "description": "Location of Vital Signs Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_255", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.VS.VSLAT", + "mandatory": false, + "name": "VSLAT", + "description": "Laterality", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_256", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.VS.VSLOBXFL", + "mandatory": false, + "name": "VSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.VS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSDTC", + "mandatory": false, + "name": "VSDTC", + "description": "Date/Time of Measurements", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_257", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_7" + }, + { + "OID": "IG.UR", + "name": "UR", + "description": "Urinary System Findings", + "domain": "UR", + "purpose": "Tabulation", + "structure": "One record per finding per location per per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "URSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.UR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URSEQ", + "mandatory": true, + "name": "URSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URTESTCD", + "mandatory": true, + "name": "URTESTCD", + "description": "Short Name of Urinary Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTSCD" + }, + { + "OID": "IT.UR.URTEST", + "mandatory": true, + "name": "URTEST", + "description": "Name of Urinary Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTS" + }, + { + "OID": "IT.UR.URORRES", + "mandatory": false, + "name": "URORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URSTRESC", + "mandatory": false, + "name": "URSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URMETHOD", + "mandatory": false, + "name": "URMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.UR.URLOBXFL", + "mandatory": false, + "name": "URLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.UR.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URDTC", + "mandatory": false, + "name": "URDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_27" + }, + { + "OID": "IG.CM", + "name": "CM", + "description": "Concomitant/Prior Medications", + "domain": "CM", + "purpose": "Tabulation", + "structure": "One record per recorded intervention occurrence or constant-dosing interval per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "CMSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.CM.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSEQ", + "mandatory": true, + "name": "CMSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMTRT", + "mandatory": true, + "name": "CMTRT", + "description": "Reported Name of Drug, Med, or Therapy", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_317", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDECOD", + "mandatory": false, + "name": "CMDECOD", + "description": "Standardized Medication Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_318", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCAT", + "mandatory": false, + "name": "CMCAT", + "description": "Category for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSCAT", + "mandatory": false, + "name": "CMSCAT", + "description": "Subcategory for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMPRESP", + "mandatory": false, + "name": "CMPRESP", + "description": "CM Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMOCCUR", + "mandatory": false, + "name": "CMOCCUR", + "description": "CM Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMINDC", + "mandatory": false, + "name": "CMINDC", + "description": "Indication", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_320", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMCLAS", + "mandatory": false, + "name": "CMCLAS", + "description": "Medication Class", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_319", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCLASCD", + "mandatory": false, + "name": "CMCLASCD", + "description": "Medication Class Code", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMDOSE", + "mandatory": false, + "name": "CMDOSE", + "description": "Dose per Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_321", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSTXT", + "mandatory": false, + "name": "CMDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_322", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSU", + "mandatory": false, + "name": "CMDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_323", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.CM.CMDOSFRM", + "mandatory": false, + "name": "CMDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_324", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.CM.CMDOSFRQ", + "mandatory": false, + "name": "CMDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_325", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.CM.CMROUTE", + "mandatory": false, + "name": "CMROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_326", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.CM.CMSTDTC", + "mandatory": false, + "name": "CMSTDTC", + "description": "Start Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_327", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMENDTC", + "mandatory": false, + "name": "CMENDTC", + "description": "End Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_328", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMSTRF", + "mandatory": false, + "name": "CMSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_329", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENRF", + "mandatory": false, + "name": "CMENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_332", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTRTPT", + "mandatory": false, + "name": "CMSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_330", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTTPT", + "mandatory": false, + "name": "CMSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_331", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMENRTPT", + "mandatory": false, + "name": "CMENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_333", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENTPT", + "mandatory": false, + "name": "CMENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_334", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_50" + }, + { + "OID": "IG.TS", + "name": "TS", + "description": "Trial Summary", + "domain": "TS", + "purpose": "Tabulation", + "structure": "One record per trial summary parameter value", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "TSPARMCD", + "TSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSSEQ", + "mandatory": true, + "name": "TSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSPARMCD", + "mandatory": true, + "name": "TSPARMCD", + "description": "Trial Summary Parameter Short Name", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_335", + "dataType": "text", + "length": null, + "codeList": "CL.TSPARMCD" + }, + { + "OID": "IT.TS.TSPARM", + "mandatory": true, + "name": "TSPARM", + "description": "Trial Summary Parameter", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_336", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TSPARM" + }, + { + "OID": "IT.TS.TSVAL", + "mandatory": false, + "name": "TSVAL", + "description": "Parameter Value", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_337", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVALCD", + "mandatory": false, + "name": "TSVALCD", + "description": "Parameter Value Code", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_338", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVCDREF", + "mandatory": false, + "name": "TSVCDREF", + "description": "Name of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_339", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DICTNAM" + }, + { + "OID": "IT.TS.TSVCDVER", + "mandatory": false, + "name": "TSVCDVER", + "description": "Version of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_340", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_51", + "slices": [ + { + "OID": "VL.TS.TSPARMCD", + "name": "VL_TS_TSPARMCD", + "type": "ValueList", + "wasDerivedFrom": "IT.TS.TSPARMCD", + "items": [ + { + "OID": "IT.TS.TSPARMCD.COMPTRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.8c559472" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INDIC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e5769859" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INTTYPE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d3e89d3f" + ] + }, + { + "OID": "IT.TS.TSPARMCD.NARMS", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.efd2a465" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJPRIM", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.fe255586" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.62794b6c" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSPRI", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.4266ae9d" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.1d6311e2" + ] + }, + { + "OID": "IT.TS.TSPARMCD.SPONSOR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e06f8db5" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TITLE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d94c6616" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d368cfb2" + ] + } + ] + } + ] + }, + { + "OID": "IG.TU", + "name": "TU", + "description": "Tumor/Lesion Identification", + "domain": "TU", + "purpose": "Tabulation", + "structure": "One record per identified tumor per subject per assessor", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "TUSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.TU.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUSEQ", + "mandatory": true, + "name": "TUSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUREFID", + "mandatory": false, + "name": "TUREFID", + "description": "Reference ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_455", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TULNKID", + "mandatory": false, + "name": "TULNKID", + "description": "Link ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_456", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TU.TUTESTCD", + "mandatory": true, + "name": "TUTESTCD", + "description": "Tumor/Lesion ID Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTESTCD" + }, + { + "OID": "IT.TU.TUTEST", + "mandatory": true, + "name": "TUTEST", + "description": "Tumor/Lesion ID Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TUTEST" + }, + { + "OID": "IT.TU.TUORRES", + "mandatory": false, + "name": "TUORRES", + "description": "Tumor/Lesion ID Result", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_448", + "dataType": "text", + "length": 24, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUSTRESC", + "mandatory": false, + "name": "TUSTRESC", + "description": "Tumor/Lesion ID Result Std. Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 24, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.TUIDRS" + }, + { + "OID": "IT.TU.TULOC", + "mandatory": false, + "name": "TULOC", + "description": "Location of the Tumor/Lesion", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_449", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.TU.TULAT", + "mandatory": false, + "name": "TULAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_450", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.TU.TUDIR", + "mandatory": false, + "name": "TUDIR", + "description": "Directionality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_451", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DIR" + }, + { + "OID": "IT.TU.TUMETHOD", + "mandatory": false, + "name": "TUMETHOD", + "description": "Method of Identification", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_452", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.TU.TULOBXFL", + "mandatory": false, + "name": "TULOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.TU.TUEVAL", + "mandatory": false, + "name": "TUEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_453", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.TU.TUEVALID", + "mandatory": false, + "name": "TUEVALID", + "description": "Evaluator Identifier", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_454", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.MEDEVAL" + }, + { + "OID": "IT.TU.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TU.TUDTC", + "mandatory": false, + "name": "TUDTC", + "description": "Date/Time of Tumor/Lesion Identification", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_457", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_74" + }, + { + "OID": "IG.TA", + "name": "TA", + "description": "Trial Arms", + "domain": "TA", + "purpose": "Tabulation", + "structure": "One record per planned Element per Arm", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ARMCD", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TA.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.ARMCD", + "mandatory": true, + "name": "ARMCD", + "description": "Planned Arm Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARMCD" + }, + { + "OID": "IT.TA.ARM", + "mandatory": true, + "name": "ARM", + "description": "Description of Planned Arm", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARM" + }, + { + "OID": "IT.TA.TAETORD", + "mandatory": true, + "name": "TAETORD", + "description": "Planned Order of Element within Arm", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TA.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TA.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TA.TABRANCH", + "mandatory": false, + "name": "TABRANCH", + "description": "Branch", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.TATRANS", + "mandatory": false, + "name": "TATRANS", + "description": "Transition Rule", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.EPOCH", + "mandatory": true, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + } + ] + }, + { + "OID": "IG.TE", + "name": "TE", + "description": "Trial Elements", + "domain": "TE", + "purpose": "Tabulation", + "structure": "One record per planned Element", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TE.ELEMENT", + "mandatory": true, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TE.TESTRL", + "mandatory": true, + "name": "TESTRL", + "description": "Rule for Start of Element", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ] + }, + { + "OID": "IG.SV", + "name": "SV", + "description": "Subject Visits", + "domain": "SV", + "purpose": "Tabulation", + "structure": "One record per actual or planned visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VISITNUM" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SV.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISITNUM", + "mandatory": true, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Topic", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISIT", + "mandatory": false, + "name": "VISIT", + "description": "Visit Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.SVPRESP", + "mandatory": false, + "name": "SVPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVOCCUR", + "mandatory": false, + "name": "SVOCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVCNTMOD", + "mandatory": false, + "name": "SVCNTMOD", + "description": "Contact Mode", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.CNTMODE" + }, + { + "OID": "IT.SV.SVSTDTC", + "mandatory": false, + "name": "SVSTDTC", + "description": "Start Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SV.SVENDTC", + "mandatory": false, + "name": "SVENDTC", + "description": "End Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + }, + { + "OID": "IG.SE", + "name": "SE", + "description": "Subject Elements", + "domain": "SE", + "purpose": "Tabulation", + "structure": "One record per actual Element per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SESTDTC" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.SESEQ", + "mandatory": true, + "name": "SESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.SE.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.SE.EPOCH", + "mandatory": false, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + }, + { + "OID": "IT.SE.SESTDTC", + "mandatory": true, + "name": "SESTDTC", + "description": "Start Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SE.SEENDTC", + "mandatory": false, + "name": "SEENDTC", + "description": "End Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + } + ], + "conditions": [ + { + "OID": "COND.TS.TSPARMCD.4b2c750e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "COMPTRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.82dcbb4a", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INDIC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.de0404c1", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INTTYPE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.1d8ed13f", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "NARMS" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.cccc9db0", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJPRIM" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.863c5858", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.69b92c86", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSPRI" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.df99032e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.5b1e67a5", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "SPONSOR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.90f47ac3", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TITLE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.e2190e21", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + } + ], + "whereClauses": [ + { + "OID": "WC.TS.8c559472", + "conditions": [ + "COND.TS.TSPARMCD.4b2c750e" + ] + }, + { + "OID": "WC.TS.e5769859", + "conditions": [ + "COND.TS.TSPARMCD.82dcbb4a" + ] + }, + { + "OID": "WC.TS.d3e89d3f", + "conditions": [ + "COND.TS.TSPARMCD.de0404c1" + ] + }, + { + "OID": "WC.TS.efd2a465", + "conditions": [ + "COND.TS.TSPARMCD.1d8ed13f" + ] + }, + { + "OID": "WC.TS.fe255586", + "conditions": [ + "COND.TS.TSPARMCD.cccc9db0" + ] + }, + { + "OID": "WC.TS.62794b6c", + "conditions": [ + "COND.TS.TSPARMCD.863c5858" + ] + }, + { + "OID": "WC.TS.4266ae9d", + "conditions": [ + "COND.TS.TSPARMCD.69b92c86" + ] + }, + { + "OID": "WC.TS.1d6311e2", + "conditions": [ + "COND.TS.TSPARMCD.df99032e" + ] + }, + { + "OID": "WC.TS.e06f8db5", + "conditions": [ + "COND.TS.TSPARMCD.5b1e67a5" + ] + }, + { + "OID": "WC.TS.d94c6616", + "conditions": [ + "COND.TS.TSPARMCD.90f47ac3" + ] + }, + { + "OID": "WC.TS.d368cfb2", + "conditions": [ + "COND.TS.TSPARMCD.e2190e21" + ] + } + ], + "codeLists": [ + { + "OID": "CL.ARMCD", + "name": "ARM Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ARM", + "name": "ARM", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ARM A" + }, + { + "codedValue": "ARM B" + } + ] + }, + { + "OID": "CL.ELEMENT", + "name": "Description of Element", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Screening" + }, + { + "codedValue": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.ETCD", + "name": "Element Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SCREENING_ELEMENT", + "decode": "Screening" + }, + { + "codedValue": "INDUCTION_EVE_FUL", + "decode": "Induction: Fulvestrant + Everolimus" + }, + { + "codedValue": "INDUCTION_PBO_FUL", + "decode": "Induction: Fulvestrant + Placebo" + }, + { + "codedValue": "CONTINUATION_EVE_FUL", + "decode": "Continuation: Fulvestrant + Everolimus" + }, + { + "codedValue": "CONTINUATION_FUL", + "decode": "Continuation: Fulvestrant alone" + }, + { + "codedValue": "FOLLOW_UP_ELEMENT", + "decode": "Follow-Up Off-Therapy" + } + ] + }, + { + "OID": "CL.EPOCH", + "name": "Epoch", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99079", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Pre-Study Phase", + "coding": { + "code": "C202487", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Induction Phase", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Continuation Phase", + "coding": { + "code": "C123452", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Follow-up Off Therapy", + "coding": { + "code": "C202578", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.ad42d7e1", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "INFORMED CONSENT OBTAINED", + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED" + } + ] + } + ] + }, + { + "OID": "CL.65a3e8d0", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ELIGIBILITY CRITERIA MET", + "coding": [ + { + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ELIGIBILITY CRITERIA MET" + } + ] + } + ] + }, + { + "OID": "CL.7cfd6cc5", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "mmHg", + "coding": [ + { + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg" + } + ] + } + ] + }, + { + "OID": "CL.20024ecd", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "beats/min", + "coding": [ + { + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min" + } + ] + } + ] + }, + { + "OID": "CL.9e69169e", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM OR PLASMA", + "coding": [ + { + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA" + } + ] + } + ] + }, + { + "OID": "CL.5183f82c", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "URINE", + "coding": [ + { + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE" + } + ] + } + ] + }, + { + "OID": "CL.b6e07c4c", + "name": "TSPARMCD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RANDOM", + "coding": [ + { + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "RANDOM" + } + ] + } + ] + }, + { + "OID": "CL.3705a725", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "s", + "coding": [ + { + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s" + } + ] + } + ] + }, + { + "OID": "CL.af8f8a19", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BLOOD", + "coding": [ + { + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD" + } + ] + } + ] + }, + { + "OID": "CL.dab673be", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RATIO", + "coding": [ + { + "code": "C44256", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RATIO" + } + ] + } + ] + }, + { + "OID": "CL.0fe19c26", + "name": "TUORRES Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "TARGET", + "coding": [ + { + "code": "C94520", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "TARGET" + } + ] + } + ] + }, + { + "OID": "CL.NCOMPLT", + "name": "Completion/Reason for Non-Completion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66727", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSCAT", + "name": "Category of Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74558", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSSCAT", + "name": "Subcategory for Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C170443", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTSCD", + "name": "Oncology Response Assessment Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96782", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRTS", + "name": "Oncology Response Assessment Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96781", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSCAT", + "name": "Category of Oncology Response Assessment", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C124298", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ONCRSR", + "name": "Oncology Response Assessment Result", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96785", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EVAL", + "name": "Evaluator", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78735", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MEDEVAL", + "name": "Medical Evaluator Identifier", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96777", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTESTCD", + "name": "Vital Signs Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66741", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTEST", + "name": "Vital Signs Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.POSITION", + "name": "Position", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71148", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSRESU", + "name": "Units for Vital Signs Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66770", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LOC", + "name": "Anatomical Location", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74456", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LAT", + "name": "Laterality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99073", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY", + "name": "No Yes Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTESTCD", + "name": "Laboratory Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C65047", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTEST", + "name": "Laboratory Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67154", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.UNIT", + "name": "Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71620", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTSCD", + "name": "Urinary System Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129942", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTS", + "name": "Urinary System Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129941", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.METHOD", + "name": "Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C85492", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FRM", + "name": "Dosage Form", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66726", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FREQ", + "name": "Frequency", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71113", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ROUTE", + "name": "Route of Administration Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66729", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.STENRF", + "name": "Relation to Reference Period", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66728", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARMCD", + "name": "Trial Summary Parameter Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66738", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "RANDOM", + "decode": "Trial is Randomized", + "coding": { + "code": "C25196", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.TSPARM", + "name": "Trial Summary Parameter Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Trial is Randomized", + "decode": "Trial is Randomized", + "coding": { + "code": "C25196", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.DICTNAM", + "name": "Dictionary Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66788", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTESTCD", + "name": "Tumor or Lesion Identification Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96784", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUTEST", + "name": "Tumor or Lesion Identification Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C96783", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TUIDRS", + "name": "Tumor or Lesion Identification Test Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C123650", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DIR", + "name": "Directionality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99074", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.CNTMODE", + "name": "Mode of Subject Contact", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C171445", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "IN PERSON", + "decode": "In-Person", + "coding": { + "code": "C175574", + "codeSystem": "nci:ExtCodeID" + } + } + ] + } + ], + "methods": [], + "comments": [], + "standards": [ + { + "OID": "STD.SDTMIG", + "name": "SDTMIG", + "type": "IG", + "version": "3.4", + "status": "FINAL" + }, + { + "OID": "STD.SDTMCT", + "name": "CDISC/NCI", + "type": "CT", + "version": "2026-03-27", + "status": "FINAL", + "publishingSet": "SDTM" + } + ], + "annotatedCRF": [], + "concepts": [ + { + "OID": "CONC.BiomedicalConcept_1", + "name": "Informed Consent", + "label": "Informed Consent", + "aliases": [ + "Informed Consent Obtained" + ], + "href": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_2", + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "aliases": [ + "Eligibility Criteria Met" + ], + "href": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.65a3e8d0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_3", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "aliases": [ + "MHYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_4", + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "aliases": [ + "Medical History", + "MHTERM" + ], + "href": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "mandatory": true, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "mandatory": true, + "coding": [ + { + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "Medical History Category", + "label": "Medical History Category", + "mandatory": true, + "coding": [ + { + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory" + } + ] + } + ], + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_5", + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "aliases": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "href": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_6", + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "coding": [ + { + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_7", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_8", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_9", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_10", + "name": "Body Temperature", + "label": "Body Temperature", + "aliases": [ + "Temperature" + ], + "href": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_11", + "name": "Body Weight", + "label": "Body Weight", + "aliases": [ + "WEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_18", + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "aliases": [ + "ALT", + "SGPT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_19", + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "aliases": [ + "AST", + "SGOT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_20", + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_21", + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "aliases": [ + "Creatinine" + ], + "href": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_22", + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "aliases": [ + "Albumin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_26", + "name": "pH", + "label": "pH", + "aliases": [ + "PH", + "potential of Hydrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_27", + "name": "Color Assessment", + "label": "Color Assessment", + "aliases": [ + "COLOR", + "Color" + ], + "href": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_28", + "name": "Specific Gravity", + "label": "Specific Gravity", + "aliases": [ + "SPGRAV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_47", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_48", + "name": "Adverse Event", + "label": "Adverse Event", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_49", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "aliases": [ + "CMYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_50", + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "aliases": [ + "Concomitant Medication" + ], + "href": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_51", + "name": "Randomization", + "label": "Randomization", + "aliases": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_52", + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "aliases": [ + "PT" + ], + "href": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_53", + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "aliases": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "href": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.dab673be" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_54", + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "aliases": [ + "APTT" + ], + "href": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_55", + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_56", + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "aliases": [ + "TRIG", + "Triglycerides" + ], + "href": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_57", + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "aliases": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_58", + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "HDL", + "HDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_59", + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "aliases": [ + "LDL", + "LDL Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_60", + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "coding": [ + { + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_61", + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "aliases": [ + "WBC", + "White Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_62", + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "aliases": [ + "RBC", + "Red Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_63", + "name": "Platelet Count", + "label": "Platelet Count", + "aliases": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_64", + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "aliases": [ + "Potassium", + "K" + ], + "href": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_65", + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "aliases": [ + "Sodium", + "NA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_66", + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "aliases": [ + "Chloride", + "CL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_409", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_67", + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "aliases": [ + "Carbon Dioxide", + "CO2" + ], + "href": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_410", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_411", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_412", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_413", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_414", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_68", + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "aliases": [ + "Calcium", + "CA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_415", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_416", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_417", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_418", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_69", + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "aliases": [ + "Urea Nitrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_424", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_70", + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_425", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_426", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_427", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_428", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_71", + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "aliases": [ + "Alkaline Phosphatase" + ], + "href": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_434", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_72", + "name": "Urate Measurement", + "label": "Urate Measurement", + "aliases": [ + "Urate", + "Uric Acid" + ], + "href": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_435", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_436", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_437", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_438", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_73", + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_444", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_445", + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_446", + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "mandatory": true, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_447", + "name": "Unit of Length", + "label": "Unit of Length", + "mandatory": true, + "coding": [ + { + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length" + } + ] + } + ], + "coding": [ + { + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_74", + "name": "Tumor Identification", + "label": "Tumor Identification", + "aliases": [ + "TUMIDENT" + ], + "href": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_448", + "name": "TUORRES", + "label": "TUORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ], + "codeList": "CL.0fe19c26" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "TULOC", + "label": "TULOC", + "mandatory": false, + "coding": [ + { + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "TULAT", + "label": "TULAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "TUDIR", + "label": "TUDIR", + "mandatory": false, + "coding": [ + { + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "TUMETHOD", + "label": "TUMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "TUEVAL", + "label": "TUEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_454", + "name": "TUEVALID", + "label": "TUEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_455", + "name": "TUREFID", + "label": "TUREFID", + "mandatory": false, + "coding": [ + { + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_456", + "name": "TULNKID", + "label": "TULNKID", + "mandatory": false, + "coding": [ + { + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_457", + "name": "TUDTC", + "label": "TUDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_75", + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "aliases": [ + "NTRGRESP", + "Non-Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_458", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_76", + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "aliases": [ + "TRGRESP", + "Target Response" + ], + "href": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_464", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_465", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_77", + "name": "Overall Response", + "label": "Overall Response", + "aliases": [ + "OVRLRESP" + ], + "href": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_466", + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "mandatory": false, + "coding": [ + { + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_467", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_468", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response" + } + ] + } + ], + "conceptProperties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.65a3e8d0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "mandatory": true, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "mandatory": true, + "coding": [ + { + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "Medical History Category", + "label": "Medical History Category", + "mandatory": true, + "coding": [ + { + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.b6e07c4c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.dab673be" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ], + "codeList": "CL.3705a725" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_409", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_410", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_411", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_412", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_413", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_414", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_415", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_416", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_417", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_418", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_424", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_425", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_426", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_427", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_428", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_434", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_435", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_436", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_437", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_438", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_444", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_445", + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_446", + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "mandatory": true, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_447", + "name": "Unit of Length", + "label": "Unit of Length", + "mandatory": true, + "coding": [ + { + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_448", + "name": "TUORRES", + "label": "TUORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ], + "codeList": "CL.0fe19c26" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "TULOC", + "label": "TULOC", + "mandatory": false, + "coding": [ + { + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "TULAT", + "label": "TULAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "TUDIR", + "label": "TUDIR", + "mandatory": false, + "coding": [ + { + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "TUMETHOD", + "label": "TUMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "TUEVAL", + "label": "TUEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_454", + "name": "TUEVALID", + "label": "TUEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_455", + "name": "TUREFID", + "label": "TUREFID", + "mandatory": false, + "coding": [ + { + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_456", + "name": "TULNKID", + "label": "TULNKID", + "mandatory": false, + "coding": [ + { + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_457", + "name": "TUDTC", + "label": "TUDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_458", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_464", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_465", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_466", + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "mandatory": false, + "coding": [ + { + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_467", + "name": "RSORRES", + "label": "RSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_468", + "name": "RSEVAL", + "label": "RSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "RSEVALID", + "label": "RSEVALID", + "mandatory": false, + "coding": [ + { + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "RSDTC", + "label": "RSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ] +} diff --git a/output/json/NCT01797120-latest.json b/output/json/NCT01797120-latest.json new file mode 100644 index 0000000..ac0703c --- /dev/null +++ b/output/json/NCT01797120-latest.json @@ -0,0 +1,14385 @@ +{ + "study": { + "id": "Study_60", + "extensionAttributes": [], + "name": "NCT01797120", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_46", + "url": "tool-version", + "valueString": "pi-fix-bc-props-specs-in-usdm", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_47", + "url": "usdm-creation-date", + "valueString": "20260716T11:34", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "PrE0102", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "PrE0102", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "PRE-STUDY", + "label": "Pre-Study", + "description": "Occuring before Randomization and Treatment", + "type": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_486", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_487", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "C1D1", + "label": "Cycle 1 Day 1", + "description": "First day fulvestrant is given with everolimus/placebo; start of Induction Phase. Treatment begins within 7 working days of randomization.", + "type": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_489", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_490", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "C1D15", + "label": "Cycle 1 Day 15", + "description": "Second fulvestrant dose (Cycle 1 only) plus safety assessments.", + "type": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_492", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_493", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "C2D1", + "label": "Cycle 2 Day 1", + "description": "Day 1 of Cycle 2 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10038", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_10039", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10040", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "C3D1", + "label": "Cycle 3 Day 1", + "description": "Day 1 of Cycle 3 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10041", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_10042", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10043", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "C4D1", + "label": "Cycle 4 Day 1", + "description": "Day 1 of Cycle 4 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10044", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_10045", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10046", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "C5D1", + "label": "Cycle 5 Day 1", + "description": "Day 1 of Cycle 5 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10047", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_10048", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10049", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "C6D1", + "label": "Cycle 6 Day 1", + "description": "Day 1 of Cycle 6 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10050", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_10051", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10052", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "C7D1", + "label": "Cycle 7 Day 1", + "description": "Day 1 of Cycle 7 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10053", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_10054", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10055", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "C8D1", + "label": "Cycle 8 Day 1", + "description": "Day 1 of Cycle 8 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10056", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_10057", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10058", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "C9D1", + "label": "Cycle 9 Day 1", + "description": "Day 1 of Cycle 9 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10059", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_10060", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10061", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "C10D1", + "label": "Cycle 10 Day 1", + "description": "Day 1 of Cycle 10 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10062", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_10063", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10064", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "C11D1", + "label": "Cycle 11 Day 1", + "description": "Day 1 of Cycle 11 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10065", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_12", + "nextId": "Encounter_14", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_10069", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10070", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_14", + "extensionAttributes": [], + "name": "C12D1", + "label": "Cycle 12 Day 1", + "description": "Day 1 of Cycle 12 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10066", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_14", + "environmentalSettings": [ + { + "id": "Code_10067", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10068", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "EOI_EOT", + "label": "End of Induction / End of Treatment", + "description": "Performed within 30 days of last fulvestrant dose, before moving to the Continuation Phase or directly to Follow-Up.", + "type": { + "id": "Code_10071", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_14", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_10072", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10073", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "CONT_CXD1", + "label": "Continuation Phase Cycle Day 1", + "description": "Day 1 of each 28-day cycle in the Continuation Phase (begins D29 after last Cycle 12 fulvestrant dose); fulvestrant +/- everolimus until progression or unacceptable toxicity. This visit repeats indefinitely - the protocol defines no fixed cycle count for the Continuation Phase, so it cannot be enumerated and is modeled as a single repeating visit.", + "type": { + "id": "Code_10074", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": "Encounter_17", + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_10075", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10076", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_17", + "extensionAttributes": [], + "name": "FU_OFF_THERAPY", + "label": "Follow-Up Off-Therapy", + "description": "Every 3 months for 3 years from randomization; disease progression, survival and new systemic therapy documented.", + "type": { + "id": "Code_10077", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_16", + "nextId": null, + "scheduledAtId": "Timing_17", + "environmentalSettings": [ + { + "id": "Code_10078", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10079", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "ELIGIBILITY ASSESSMENT", + "label": "Eligibility Assessment", + "description": "Determine subject meets eligibility requirements", + "previousId": null, + "nextId": "Activity_1", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "INFORMED CONSENT", + "label": "Informed Consent", + "description": "Informed Consent collected", + "previousId": "Activity_2", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "RANDOMIZATION", + "label": "Randomization", + "description": "Randomization", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "MEDICAL HISTORY", + "label": "Medical History", + "description": "Medical History & Assessment of Baseline Signs and Symptoms", + "previousId": "Activity_19", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "PHYSICAL EXAM", + "label": "Physical Examination", + "description": "Physical Examination", + "previousId": "Activity_3", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "CONCOMITANT MEDS", + "label": "Concomitant Medications", + "description": "Concomitant Medications", + "previousId": "Activity_5", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "VITAL SIGNS", + "label": "Vital Signs", + "description": "Vital Signs (Blood Pressure, Heart Rate, Temperature) and Weight", + "previousId": "Activity_18", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10", + "BiomedicalConcept_11" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "ECOG PERFORMANCE STATUS", + "label": "ECOG Performance Status", + "description": "ECOG performance status", + "previousId": "Activity_6", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5", + "BiomedicalConcept_60" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ADVERSE EVENTS ASSESSMENTS", + "label": "Adverse Event Assessment", + "description": "Adverse Event Assessment", + "previousId": "Activity_4", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_47", + "BiomedicalConcept_48" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "IMAGING SCANS", + "label": "Imaging Scans", + "description": "Tumor imaging scans", + "previousId": "Activity_17", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_73", + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "PT/INR", + "label": "PT with INR", + "description": "prothrombin time and international normalized ratio", + "previousId": "Activity_22", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52", + "BiomedicalConcept_53", + "BiomedicalConcept_54" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "URINALYSIS", + "label": "Urinalysis Labs", + "description": "Urinalysis Labs", + "previousId": "Activity_23", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_26", + "BiomedicalConcept_27", + "BiomedicalConcept_28" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "CBC", + "label": "CBC with differentials, Platelets", + "description": "CBC with differentials, Platelets", + "previousId": "Activity_10", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "CHEMISTRY LABS", + "label": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "description": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "previousId": "Activity_24", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18", + "BiomedicalConcept_19", + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_1", + "BiomedicalConceptSurrogate_8" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "GLUCOSE", + "label": "Fasting Glucose", + "description": "Fasting Glucose", + "previousId": "Activity_8", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "LIPID PROFILE", + "label": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "description": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "HBV-DNA-1", + "label": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "description": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2", + "BiomedicalConceptSurrogate_3", + "BiomedicalConceptSurrogate_4", + "BiomedicalConceptSurrogate_5", + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "HBV-DNA-2", + "label": "HBV DNA", + "description": "HBV DNA", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "HCV", + "label": "HCV RNA-PCR", + "description": "HCV RNA-PCR", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "COMPLIANCE", + "label": "Study Drug Compliance (Pill Diary)", + "description": "Study Drug Compliance (Pill Diary)", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19", + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "PFTS", + "label": "PFTs with DLCO as medically indicatedn", + "description": "PFTs with DLCO as medically indicatedn", + "previousId": "Activity_30", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_7" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "ARM A", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Everolimus 10mg PO QD", + "type": { + "id": "Code_4", + "extensionAttributes": [], + "code": "C174266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Experimental Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "ARM B", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Placebo PO QD", + "type": { + "id": "Code_6", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_7", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Pre-Study Phase", + "label": "Pre-Study Phase", + "description": "Eligibility assessment, up to 28 days prior to C1D1", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Induction Phase", + "label": "Induction Phase", + "description": "From C1D1 until disease progression or discontinuation", + "type": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Continuation Phase", + "label": "Continuation Phase", + "description": "Continuation Phase (until progression or unacceptable toxicity", + "type": { + "id": "Code_813", + "extensionAttributes": [], + "code": "C123452", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "CONTINUATION TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Follow-up Off Therapy", + "label": "Follow-up, off therapy", + "description": "Post-EOT survival and safety follow-up", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "SCREENING_ELEMENT", + "label": "Screening", + "description": "Pre-study eligibility and baseline assessment period (within 4 weeks of randomization).", + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "INDUCTION_EVE_FUL", + "label": "Induction: Fulvestrant + Everolimus", + "description": "Induction treatment for Arm A: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus everolimus 10 mg PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "INDUCTION_PBO_FUL", + "label": "Induction: Fulvestrant + Placebo", + "description": "Induction treatment for Arm B: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus placebo PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_4" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "CONTINUATION_EVE_FUL", + "label": "Continuation: Fulvestrant + Everolimus", + "description": "Continuation treatment for patients originally randomized to everolimus: fulvestrant 500 mg IM D1 every 28-day cycle plus everolimus, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "CONTINUATION_FUL", + "label": "Continuation: Fulvestrant alone", + "description": "Continuation treatment for patients originally randomized to placebo: fulvestrant 500 mg IM D1 every 28-day cycle alone, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_5" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "FOLLOW_UP_ELEMENT", + "label": "Follow-Up Off-Therapy", + "description": "Off-therapy follow-up for disease progression and survival, every 3 months for 3 years from randomization.", + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand for Progression-Free Survival (PFS)", + "label": "Primary Estimand", + "description": "Comparison of PFS between fulvestrant plus everolimus versus fulvestrant plus placebo in AI-resistant HR+ metastatic breast cancer. Constructed retrospectively per ICH E9(R1); this protocol predates the 2019 addendum.", + "populationSummary": "Post-menopausal women with HR+ (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy; ECOG PS 0-1; no prior mTOR inhibitor; up to one prior systemic chemotherapy for metastatic disease. Randomized 1:1; approximately 120 eligible patients.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Composite: death is included as a PFS event (composite endpoint definition per \u00a76.1.6). The time-to-event variable captures whichever occurs first: progression or death.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_2", + "extensionAttributes": [], + "name": "Discontinuation of everolimus due to toxicity", + "label": "Discontinuation of everolimus due to toxicity", + "description": null, + "text": "Patient permanently discontinues everolimus or placebo due to an adverse event but continues on fulvestrant monotherapy.", + "strategy": "Treatment-policy: patient remains on study and continues fulvestrant alone per \u00a75.5. Follow-up for progression and survival continues. PFS events occurring after everolimus discontinuation are included in the primary analysis regardless of treatment status.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_3", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or is lost to follow-up before a PFS event is documented.", + "strategy": "Hypothetical (censoring): patient is censored at the date of last tumor assessment. The estimand implicitly assumes non-informative censoring \u2014 that censored patients would have experienced events at the same rate as those who remained in follow-up.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_4", + "extensionAttributes": [], + "name": "Initiation of prohibited anti-cancer therapy before progression", + "label": "Initiation of prohibited anti-cancer therapy before progression", + "description": null, + "text": "Patient receives a prohibited anti-cancer agent before disease progression is documented.", + "strategy": "Treatment-policy: protocol prohibits new anti-cancer agents before progression (\u00a75.3.4). If such a violation occurred, the patient would remain in the analysis with events counted as observed. No censoring at time of prohibited therapy initiation is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_2", + "extensionAttributes": [], + "name": "Estimand for Overall Survival (OS)", + "label": "Secondary Estimand \u2014 OS", + "description": "Comparison of overall survival between treatment arms. Descriptive; no pre-specified alpha or power.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_2", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_5", + "extensionAttributes": [], + "name": "Discontinuation of study treatment (any reason)", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues all study treatment due to disease progression, toxicity, or other reasons.", + "strategy": "Treatment-policy: all patients who discontinue treatment are followed for survival per \u00a75.5. Deaths after treatment cessation are counted as OS events regardless of reason for discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_6", + "extensionAttributes": [], + "name": "Initiation of subsequent anti-cancer therapy after progression", + "label": "Initiation of subsequent anti-cancer therapy after progression", + "description": null, + "text": "Patient initiates a new anti-cancer regimen after disease progression on study treatment.", + "strategy": "Treatment-policy: OS reflects real-world outcome including the effect of any subsequent therapies. No censoring or adjustment for post-progression treatment is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_7", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or cannot be contacted for survival follow-up.", + "strategy": "Hypothetical (censoring): patient is censored at date of last known alive contact. Non-informative censoring assumed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_3", + "extensionAttributes": [], + "name": "Estimand for Time to Progression (TTP)", + "label": "Secondary Estimand \u2014 TTP", + "description": "Comparison of time to disease progression, excluding deaths as events. Descriptive.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_3", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_8", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Hypothetical (censoring): death without prior progression results in censoring at time of death. This reflects the hypothetical question 'what would the time to progression have been if the patient had not died?' \u2014 the key mechanistic distinction from the PFS estimand.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_9", + "extensionAttributes": [], + "name": "Discontinuation of study treatment", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues study treatment before disease progression.", + "strategy": "Treatment-policy: follow-up for progression continues after treatment discontinuation per \u00a75.5. TTP events occurring after treatment cessation are included.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_4", + "extensionAttributes": [], + "name": "Estimand for Objective Response Rate (ORR)", + "label": "Secondary Estimand \u2014 ORR", + "description": "Between-arm comparison of the proportion of patients achieving confirmed CR or PR in patients with measurable disease. Descriptive.", + "populationSummary": "Subset of randomized eligible patients with at least one measurable lesion at baseline per RECIST v1.1.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_4", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_10", + "extensionAttributes": [], + "name": "Death or progression before first response assessment", + "label": "Death or progression before first response assessment", + "description": null, + "text": "Patient dies or has documented progression before achieving CR or PR at any post-baseline tumor assessment.", + "strategy": "Composite: patients who die or progress without ever achieving a confirmed CR or PR are counted as non-responders in the ORR denominator.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_11", + "extensionAttributes": [], + "name": "Treatment discontinuation before response assessment", + "label": "Treatment discontinuation before response assessment", + "description": null, + "text": "Patient discontinues all study treatment before a post-baseline tumor assessment confirming CR or PR.", + "strategy": "Treatment-policy: patients who discontinue without a prior confirmed response are counted as non-responders. No censoring at time of treatment discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_5", + "extensionAttributes": [], + "name": "Estimand for Clinical Benefit Rate (CBR)", + "label": "Secondary Estimand \u2014 CBR", + "description": "Between-arm comparison of the proportion of patients with CR, PR, or SD maintained for at least 6 months. Descriptive.", + "populationSummary": "All randomized eligible patients including those with measurable and non-measurable disease.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_5", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_12", + "extensionAttributes": [], + "name": "Death or progression before 6-month stable disease threshold", + "label": "Death or progression before 6-month stable disease threshold", + "description": null, + "text": "Patient dies or has documented progression before 6 months of confirmed stable disease, partial response, or complete response.", + "strategy": "Composite: patients who do not achieve and maintain CR, PR, or SD for at least 6 months are counted as not deriving clinical benefit, regardless of cause.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_13", + "extensionAttributes": [], + "name": "Treatment discontinuation before 6-month landmark", + "label": "Treatment discontinuation before 6-month landmark", + "description": null, + "text": "Patient discontinues study treatment before the 6-month landmark required for SD to qualify as clinical benefit.", + "strategy": "Treatment-policy: patients who discontinue and lack tumor assessment confirming \u22656 months of SD are counted as non-responders for CBR.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_6", + "extensionAttributes": [], + "name": "Estimand for Safety and Tolerability", + "label": "Secondary Estimand \u2014 Safety", + "description": "Descriptive characterization of the incidence and severity of adverse events in the safety-evaluable population. No formal hypothesis test.", + "populationSummary": "All patients who received at least one dose of any study treatment. Approximately 65 patients per arm.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_6", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_14", + "extensionAttributes": [], + "name": "Treatment discontinuation", + "label": "Treatment discontinuation", + "description": null, + "text": "Patient permanently discontinues study treatment. AE collection continues for 30 days after last dose of any study drug per \u00a75.5.", + "strategy": "While-on-treatment: TEAEs are collected only during the treatment period and the 30-day post-treatment follow-up window. Adverse events occurring beyond this window are not captured as TEAEs in the primary safety analysis.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_15", + "extensionAttributes": [], + "name": "Dose reduction or interruption of everolimus", + "label": "Dose reduction or interruption of everolimus", + "description": null, + "text": "Patient undergoes dose modification (reduction or temporary interruption) of everolimus or placebo per protocol dose-modification rules.", + "strategy": "Treatment-policy: AEs that prompt dose modification are recorded regardless of the modification. Events are attributed to the randomized treatment arm and included in the safety summary as observed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Hormone Receptor-Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "label": "HR+ AI-Resistant Metastatic Breast Cancer", + "description": "Post-menopausal women with hormone-receptor positive (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy, defined as relapse while receiving adjuvant AI or progressive disease while receiving an AI for metastatic disease.", + "isRareDisease": false, + "codes": [ + { + "id": "Code_7947", + "extensionAttributes": [], + "code": "C9246", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Hormone Receptor-Positive Breast Carcinoma", + "instanceType": "Code" + }, + { + "id": "Code_7948", + "extensionAttributes": [], + "code": "C7771", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Metastatic Breast Carcinoma", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_3", + "StudyIntervention_4", + "StudyIntervention_5" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "Primary Objective", + "label": "Primary Objective", + "description": "To assess progression-free survival in post-menopausal patients with hormone-receptor positive metastatic breast cancer that is resistant to aromatase inhibitor therapy treated with fulvestrant and everolimus compared to fulvestrant alone.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2355", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "Progression-Free Survival (PFS)", + "label": "Progression-Free Survival (PFS)", + "description": "Time from randomization to documented disease progression or death, whichever occurs first. Subjects who have neither progressed nor died are censored at the date of last tumor assessment. Disease progression assessed per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To demonstrate that the addition of everolimus to fulvestrant improves PFS compared to fulvestrant plus placebo (hypothesized median PFS improvement from 5.4 to 9.2 months; HR \u2248 0.59).", + "level": { + "id": "Code_2356", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "Secondary Objective", + "label": "Secondary Objective", + "description": "To describe the safety profile, objective response rate, time to progression, and overall survival in this patient population.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2357", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "Overall Survival (OS)", + "label": "Overall Survival (OS)", + "description": "Time from randomization until death from any cause. Subjects alive at the time of analysis are censored at the date of last follow-up.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize overall survival in the two treatment arms.", + "level": { + "id": "Code_2358", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "Time to Progression (TTP)", + "label": "Time to Progression (TTP)", + "description": "Time from randomization until objective disease progression per RECIST v1.1. Unlike PFS, deaths without prior progression are not counted as events (subjects are censored at time of death).", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To estimate and compare median time to disease progression between treatment arms.", + "level": { + "id": "Code_2359", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "Objective Response Rate (ORR)", + "label": "Objective Response Rate (ORR)", + "description": "Proportion of patients with a confirmed complete response (CR) or partial response (PR) per RECIST v1.1. Assessed in patients with measurable disease at baseline.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients achieving an objective tumor response between treatment arms.", + "level": { + "id": "Code_2360", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "Clinical Benefit Rate (CBR)", + "label": "Clinical Benefit Rate (CBR)", + "description": "Proportion of patients with stable disease (SD) for \u22656 months, partial response (PR), or complete response (CR) \u2014 i.e., CR + PR + SD \u2265 6 months \u2014 per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients deriving clinical benefit (response or prolonged stable disease) between treatment arms.", + "level": { + "id": "Code_2361", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "Safety and Tolerability", + "label": "Safety and Tolerability", + "description": "Incidence, severity (CTCAE v4.0 grade), and type of adverse events, including overall toxicity, grade 3\u20134 toxicities, serious adverse events (SAEs), and second primary cancers. Assessed in all patients who received at least one dose of study treatment.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize and compare the safety profile of fulvestrant plus everolimus versus fulvestrant plus placebo.", + "level": { + "id": "Code_2362", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "MAIN_TIMELINE", + "label": "PrE0102 Main Schedule of Activities Timeline", + "description": "Main timeline spanning Screening, Induction (max 12 x 28-day cycles), Continuation and Follow-Up.", + "mainTimeline": true, + "entryCondition": "Patient randomized 1:1 to Arm A (fulvestrant + everolimus) or Arm B (fulvestrant + placebo).", + "entryId": "ScheduledActivityInstance_1", + "exits": [], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "C1D1_ANCHOR", + "label": "Cycle 1 Day 1 (anchor)", + "description": "Cycle 1 Day 1 (anchor)", + "type": { + "id": "Code_10080", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P0D", + "valueLabel": "Day 1", + "relativeToFrom": { + "id": "Code_10081", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "SCREEN_WINDOW", + "label": "Within 4 weeks before C1D1", + "description": "Within 4 weeks before C1D1", + "type": { + "id": "Code_10082", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "Up to 28 days before", + "relativeToFrom": { + "id": "Code_10083", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": "P0D", + "windowUpper": "P28D", + "windowLabel": "<= 4 weeks before C1D1", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "C1D15_OFFSET", + "label": "14 days after C1D1", + "description": "14 days after C1D1", + "type": { + "id": "Code_10084", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P14D", + "valueLabel": "Day 15", + "relativeToFrom": { + "id": "Code_10085", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "C2D1_OFFSET", + "label": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "description": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "type": { + "id": "Code_10086", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10087", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "C3D1_OFFSET", + "label": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "description": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "type": { + "id": "Code_10088", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10089", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "C4D1_OFFSET", + "label": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "description": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "type": { + "id": "Code_10090", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10091", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "C5D1_OFFSET", + "label": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "description": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "type": { + "id": "Code_10092", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10093", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "C6D1_OFFSET", + "label": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "description": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10094", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_8", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "C7D1_OFFSET", + "label": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "description": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10095", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_9", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "C8D1_OFFSET", + "label": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "description": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "type": { + "id": "Code_10096", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10097", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_10", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "C9D1_OFFSET", + "label": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "description": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "type": { + "id": "Code_10098", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10099", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "C10D1_OFFSET", + "label": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "description": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "type": { + "id": "Code_10100", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10101", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "C11D1_OFFSET", + "label": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "description": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "type": { + "id": "Code_10102", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10103", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "C12D1_OFFSET", + "label": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "description": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "type": { + "id": "Code_10104", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10105", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "EOI_OFFSET", + "label": "End of Induction", + "description": "End of Induction", + "type": { + "id": "Code_10106", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P30D", + "valueLabel": "within 30 days of last dose", + "relativeToFrom": { + "id": "Code_10107", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": "P0D", + "windowUpper": "P30D", + "windowLabel": "within 30 days of last fulvestrant dose", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "CONT_OFFSET", + "label": "Continuation Day 1", + "description": "Continuation Day 1", + "type": { + "id": "Code_10108", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "D29 after last Cycle 12 dose", + "relativeToFrom": { + "id": "Code_10109", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + }, + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "FU_OFFSET", + "label": "Every 3 months follow-up", + "description": "Every 3 months follow-up", + "type": { + "id": "Code_10110", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P84D", + "valueLabel": "Every 3 months (12 weeks)", + "relativeToFrom": { + "id": "Code_10111", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SAI_PRESTUDY", + "label": "Pre-Study", + "description": "Pre-Study", + "defaultConditionId": "ScheduledActivityInstance_2", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SAI_C1D1", + "label": "Cycle 1 Day 1", + "description": "Cycle 1 Day 1", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "SAI_C1D15", + "label": "Cycle 1 Day 15", + "description": "Cycle 1 Day 15", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "SAI_C2D1", + "label": "Cycle 2 Day 1", + "description": "Cycle 2 Day 1", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "SAI_C3D1", + "label": "Cycle 3 Day 1", + "description": "Cycle 3 Day 1", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "SAI_C4D1", + "label": "Cycle 4 Day 1", + "description": "Cycle 4 Day 1", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "SAI_C5D1", + "label": "Cycle 5 Day 1", + "description": "Cycle 5 Day 1", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "SAI_C6D1", + "label": "Cycle 6 Day 1", + "description": "Cycle 6 Day 1", + "defaultConditionId": "ScheduledActivityInstance_9", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SAI_C7D1", + "label": "Cycle 7 Day 1", + "description": "Cycle 7 Day 1", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SAI_C8D1", + "label": "Cycle 8 Day 1", + "description": "Cycle 8 Day 1", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "SAI_C9D1", + "label": "Cycle 9 Day 1", + "description": "Cycle 9 Day 1", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "SAI_C10D1", + "label": "Cycle 10 Day 1", + "description": "Cycle 10 Day 1", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_12" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "SAI_C11D1", + "label": "Cycle 11 Day 1", + "description": "Cycle 11 Day 1", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "SAI_C12D1", + "label": "Cycle 12 Day 1", + "description": "Cycle 12 Day 1", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_14" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "SAI_EOI", + "label": "End of Induction / End of Treatment", + "description": "End of Induction / End of Treatment", + "defaultConditionId": "ScheduledDecisionInstance_1", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "SAI_CONT", + "label": "Continuation Phase Cycle Day 1", + "description": "Continuation Phase Cycle Day 1", + "defaultConditionId": "ScheduledDecisionInstance_2", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "SAI_FU", + "label": "Follow-Up Off-Therapy", + "description": "Follow-Up Off-Therapy", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_17" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "SDI_END_INDUCTION", + "label": "Decision: End of Induction (unblinding)", + "description": "Decision: End of Induction (unblinding)", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "No evidence of disease progression after 12 cycles of Induction: patient is unblinded and proceeds to the Continuation Phase.", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "condition": "Disease progression or unacceptable toxicity (or other discontinuation per Sections 5.5/5.6): patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "SDI_CONTINUATION", + "label": "Decision: Continuation Phase progression check", + "description": "Decision: Continuation Phase progression check", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_3", + "extensionAttributes": [], + "condition": "No documented progression and no unacceptable toxicity: continue treatment with the next Continuation cycle (this visit repeats; the protocol sets no fixed Continuation cycle count).", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_4", + "extensionAttributes": [], + "condition": "Documented disease progression or unacceptable toxicity: patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "type": { + "id": "Code_8497", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1" + ], + "dateValues": [], + "amendments": [], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "PrECOG, LLC", + "label": "PrECOG", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7949", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "PrECOG, LLC, 1818 Market Street, Suite 1100, Philadelphia, PA 19103", + "lines": [ + "1818 Market Street", + "Suite 1100" + ], + "city": "Philadelphia", + "district": null, + "state": "PA", + "postalCode": "19103", + "country": { + "id": "Code_7950", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "Novartis Pharmaceuticals Corporation", + "label": "Novartis", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7951", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_7952", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "clinicaltrials.gov", + "label": "clinicaltrials.gov", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9956", + "extensionAttributes": [], + "code": "C188863", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Regulatory Agency", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "National Library of Medicine\n8600 Rockville Pike, Bethesda, MD 20894", + "lines": [ + "National Library of Medicine", + "8600 Rockville Pike" + ], + "city": "Bethesda", + "district": null, + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_9957", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_4", + "extensionAttributes": [], + "name": "VendorLab1", + "label": "Vendor1", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9958", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_4", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9959", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_5", + "extensionAttributes": [], + "name": "VendorLab2", + "label": "Vendor2", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9961", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_5", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9962", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Clinical Study Sponsor", + "label": "Clinical Study Sponsor", + "description": "PrECOG, LLC serves as the clinical study sponsor and coordinating group for this investigator-initiated trial.", + "code": { + "id": "Code_8489", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_2", + "extensionAttributes": [], + "name": "Study Chair", + "label": "Study Chair", + "description": null, + "code": { + "id": "Code_9716", + "extensionAttributes": [], + "code": "C19924", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Principal Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_1", + "extensionAttributes": [], + "name": "Noah Kornblum", + "label": null, + "description": null, + "personName": { + "id": "PersonName_1", + "extensionAttributes": [], + "text": null, + "familyName": "Kornblum", + "givenNames": [ + "Noah" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Study Co-Chair", + "label": "Study Co-Chair", + "description": null, + "code": { + "id": "Code_9717", + "extensionAttributes": [], + "code": "C25936", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "Joseph A. Sparano", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Sparano", + "givenNames": [ + "Joseph", + "A." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Co-Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_4", + "extensionAttributes": [], + "name": "Medical Monitor", + "label": "Medical Monitor", + "description": null, + "code": { + "id": "Code_9718", + "extensionAttributes": [], + "code": "C51876", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Sponsor Medical Expert", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_3", + "extensionAttributes": [], + "name": "Katherine M. Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_3", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "Katherine", + "M." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Medical Monitor", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_5", + "extensionAttributes": [], + "name": "Study Statistician", + "label": "Study Statistician", + "description": null, + "code": { + "id": "Code_9719", + "extensionAttributes": [], + "code": "C51877", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Statistician", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_4", + "extensionAttributes": [], + "name": "Judi Manola", + "label": null, + "description": null, + "personName": { + "id": "PersonName_4", + "extensionAttributes": [], + "text": null, + "familyName": "Manola", + "givenNames": [ + "Judi" + ], + "prefixes": [], + "suffixes": [ + "MS" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Statistician", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_6", + "extensionAttributes": [], + "name": "Study Contact", + "label": "Study Contact", + "description": null, + "code": { + "id": "Code_9720", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_5", + "extensionAttributes": [], + "name": "Carolyn Andrews", + "label": null, + "description": null, + "personName": { + "id": "PersonName_5", + "extensionAttributes": [], + "text": null, + "familyName": "Andrews", + "givenNames": [ + "Carolyn" + ], + "prefixes": [], + "suffixes": [ + "RN" + ], + "instanceType": "PersonName" + }, + "jobTitle": "PrECOG Study Contact", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_7", + "extensionAttributes": [], + "name": "Investigational Product Manufacturer", + "label": "Investigational Product Manufacturer", + "description": "Novartis Pharmaceuticals Corporation supplies everolimus and matching placebo for the study.", + "code": { + "id": "Code_9714", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_8", + "extensionAttributes": [], + "name": "Pharmacovigilance Group", + "label": "Pharmacovigilance Group", + "description": "Novartis Pharmaceuticals Drug Safety and Epidemiology Department (DS&E). Receives SAE notifications from PrECOG within 24 hours of awareness date.", + "code": { + "id": "Code_9715", + "extensionAttributes": [], + "code": "C215673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Pharmacovigilance Group", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_9", + "extensionAttributes": [], + "name": "Primary Data Manager", + "label": "Primary Data Manager", + "description": null, + "code": { + "id": "Code_9963", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_6", + "extensionAttributes": [], + "name": "Valerie S", + "label": null, + "description": null, + "personName": { + "id": "PersonName_6", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Valerie" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Primary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_10", + "extensionAttributes": [], + "name": "Secondary Data Manager", + "label": "Secondary Data Manager", + "description": null, + "code": { + "id": "Code_9964", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_7", + "extensionAttributes": [], + "name": "Patrick G", + "label": null, + "description": null, + "personName": { + "id": "PersonName_7", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Patrick" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Secondary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_11", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9965", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_4" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_8", + "extensionAttributes": [], + "name": "Eva J", + "label": null, + "description": null, + "personName": { + "id": "PersonName_8", + "extensionAttributes": [], + "text": null, + "familyName": "J", + "givenNames": [ + "Eva" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_12", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9966", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_5" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_9", + "extensionAttributes": [], + "name": "Melissa T", + "label": null, + "description": null, + "personName": { + "id": "PersonName_9", + "extensionAttributes": [], + "text": null, + "familyName": "T", + "givenNames": [ + "Melissa" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_3", + "extensionAttributes": [], + "name": "Fulvestrant + Everolimus (Arm A)", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus Everolimus 10 mg orally once daily.", + "role": { + "id": "Code_10033", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10034", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_4", + "extensionAttributes": [], + "name": "Fulvestrant + Placebo (Arm B)", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus matching oral placebo once daily.", + "role": { + "id": "Code_10036", + "extensionAttributes": [], + "code": "C68609", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Active Comparator", + "instanceType": "Code" + }, + "type": { + "id": "Code_10037", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_5", + "extensionAttributes": [], + "name": "Fulvestrant", + "label": "Fulvestrant", + "description": "Fulvestrant administered on its own in Continuation Phase minus the placebo. Indicates subject PFS while on Fulvestrant + Placebo treatment arm (ARM B).", + "role": { + "id": "Code_10112", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10113", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": "Informed Consent", + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "id": "BiomedicalConceptProperty_227", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_40", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_10380", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9623", + "standardCode": { + "id": "Code_10379", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_228", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9625", + "standardCode": { + "id": "Code_10381", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_229", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9626", + "standardCode": { + "id": "Code_10382", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_8", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ELIGMET", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "synonyms": [ + "Eligibility Criteria Met" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [ + { + "id": "BiomedicalConceptProperty_239", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_41", + "instanceType": "ResponseCode", + "name": "ELIGIBILITY CRITERIA MET", + "label": "ELIGIBILITY CRITERIA MET", + "isEnabled": true, + "code": { + "id": "Code_10393", + "extensionAttributes": [], + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ELIGIBILITY CRITERIA MET", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9636", + "standardCode": { + "id": "Code_10392", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_240", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9638", + "standardCode": { + "id": "Code_10394", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_241", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9639", + "standardCode": { + "id": "Code_10395", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_6", + "extensionAttributes": [], + "standardCode": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "synonyms": [ + "MHYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [ + { + "id": "BiomedicalConceptProperty_242", + "extensionAttributes": [], + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9640", + "standardCode": { + "id": "Code_10396", + "extensionAttributes": [], + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_243", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9641", + "standardCode": { + "id": "Code_10397", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_11", + "extensionAttributes": [], + "standardCode": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "synonyms": [ + "Medical History", + "MHTERM" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [ + { + "id": "BiomedicalConceptProperty_244", + "extensionAttributes": [], + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9642", + "standardCode": { + "id": "Code_10398", + "extensionAttributes": [], + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_245", + "extensionAttributes": [], + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9643", + "standardCode": { + "id": "Code_10399", + "extensionAttributes": [], + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_246", + "extensionAttributes": [], + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "isRequired": true, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9644", + "standardCode": { + "id": "Code_10400", + "extensionAttributes": [], + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_247", + "extensionAttributes": [], + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9645", + "standardCode": { + "id": "Code_10401", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_248", + "extensionAttributes": [], + "name": "Medical History Category", + "label": "Medical History Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9646", + "standardCode": { + "id": "Code_10402", + "extensionAttributes": [], + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_249", + "extensionAttributes": [], + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9647", + "standardCode": { + "id": "Code_10403", + "extensionAttributes": [], + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_12", + "extensionAttributes": [], + "standardCode": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ECOG101", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "synonyms": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "reference": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [ + { + "id": "BiomedicalConceptProperty_250", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9648", + "standardCode": { + "id": "Code_10404", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_251", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9649", + "standardCode": { + "id": "Code_10405", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_13", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "code": { + "id": "AliasCode_21", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_252", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9650", + "standardCode": { + "id": "Code_10406", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_253", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_42", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_10408", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9651", + "standardCode": { + "id": "Code_10407", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_254", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9653", + "standardCode": { + "id": "Code_10409", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_255", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9654", + "standardCode": { + "id": "Code_10410", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_256", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9655", + "standardCode": { + "id": "Code_10411", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_257", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9656", + "standardCode": { + "id": "Code_10412", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_258", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9657", + "standardCode": { + "id": "Code_10413", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_259", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_43", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_10415", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9658", + "standardCode": { + "id": "Code_10414", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_260", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9660", + "standardCode": { + "id": "Code_10416", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_261", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9661", + "standardCode": { + "id": "Code_10417", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_262", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9662", + "standardCode": { + "id": "Code_10418", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_263", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9663", + "standardCode": { + "id": "Code_10419", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_264", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9664", + "standardCode": { + "id": "Code_10420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_265", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_44", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_10422", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9665", + "standardCode": { + "id": "Code_10421", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_266", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9667", + "standardCode": { + "id": "Code_10423", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_267", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9668", + "standardCode": { + "id": "Code_10424", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_268", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9669", + "standardCode": { + "id": "Code_10425", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_269", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9670", + "standardCode": { + "id": "Code_10426", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "id": "BiomedicalConceptProperty_270", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9671", + "standardCode": { + "id": "Code_10427", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_271", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9672", + "standardCode": { + "id": "Code_10428", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_272", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9673", + "standardCode": { + "id": "Code_10429", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_273", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9674", + "standardCode": { + "id": "Code_10430", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5688", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5767", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "id": "BiomedicalConceptProperty_274", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9675", + "standardCode": { + "id": "Code_10431", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_275", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9676", + "standardCode": { + "id": "Code_10432", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_276", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9677", + "standardCode": { + "id": "Code_10433", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10029", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "id": "BiomedicalConceptProperty_277", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9678", + "standardCode": { + "id": "Code_10434", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_278", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9679", + "standardCode": { + "id": "Code_10435", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_279", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_45", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10437", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9680", + "standardCode": { + "id": "Code_10436", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_280", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9682", + "standardCode": { + "id": "Code_10438", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_281", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9683", + "standardCode": { + "id": "Code_10439", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10030", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "id": "BiomedicalConceptProperty_282", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9684", + "standardCode": { + "id": "Code_10440", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_283", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9685", + "standardCode": { + "id": "Code_10441", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_284", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_46", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10443", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9686", + "standardCode": { + "id": "Code_10442", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_285", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9688", + "standardCode": { + "id": "Code_10444", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_286", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9689", + "standardCode": { + "id": "Code_10445", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_767", + "extensionAttributes": [], + "standardCode": { + "id": "Code_807", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_287", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9690", + "standardCode": { + "id": "Code_10446", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_288", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9691", + "standardCode": { + "id": "Code_10447", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_289", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_47", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10449", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9692", + "standardCode": { + "id": "Code_10448", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_290", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9694", + "standardCode": { + "id": "Code_10450", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_291", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9695", + "standardCode": { + "id": "Code_10451", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9906", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10662", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "id": "BiomedicalConceptProperty_292", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9696", + "standardCode": { + "id": "Code_10452", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_293", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9697", + "standardCode": { + "id": "Code_10453", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_294", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_48", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10455", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9698", + "standardCode": { + "id": "Code_10454", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_295", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9700", + "standardCode": { + "id": "Code_10456", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_296", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9701", + "standardCode": { + "id": "Code_10457", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5689", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5768", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "id": "BiomedicalConceptProperty_297", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9702", + "standardCode": { + "id": "Code_10458", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_298", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9703", + "standardCode": { + "id": "Code_10459", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_299", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_49", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10461", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9704", + "standardCode": { + "id": "Code_10460", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_300", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9706", + "standardCode": { + "id": "Code_10462", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_301", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9707", + "standardCode": { + "id": "Code_10463", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5690", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5769", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "pH", + "label": "pH", + "synonyms": [ + "PH", + "potential of Hydrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [ + { + "id": "BiomedicalConceptProperty_302", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9708", + "standardCode": { + "id": "Code_10464", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_303", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_50", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10466", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9709", + "standardCode": { + "id": "Code_10465", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_304", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9711", + "standardCode": { + "id": "Code_10467", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_305", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9712", + "standardCode": { + "id": "Code_10468", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5691", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5770", + "extensionAttributes": [], + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "id": "BiomedicalConceptProperty_306", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9713", + "standardCode": { + "id": "Code_10469", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_307", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_51", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10471", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9714", + "standardCode": { + "id": "Code_10470", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_308", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9716", + "standardCode": { + "id": "Code_10472", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10031", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "id": "BiomedicalConceptProperty_309", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9717", + "standardCode": { + "id": "Code_10473", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_310", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_52", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10475", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9718", + "standardCode": { + "id": "Code_10474", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_311", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9720", + "standardCode": { + "id": "Code_10476", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_312", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9721", + "standardCode": { + "id": "Code_10477", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5692", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5771", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_313", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9722", + "standardCode": { + "id": "Code_10478", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_314", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9723", + "standardCode": { + "id": "Code_10479", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5693", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5772", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event", + "label": "Adverse Event", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_9907", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10663", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "id": "BiomedicalConceptProperty_315", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9724", + "standardCode": { + "id": "Code_10480", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_316", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9725", + "standardCode": { + "id": "Code_10481", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5694", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5773", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "id": "BiomedicalConceptProperty_317", + "extensionAttributes": [], + "name": "CMTRT", + "label": "CMTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9726", + "standardCode": { + "id": "Code_10482", + "extensionAttributes": [], + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_318", + "extensionAttributes": [], + "name": "CMDECOD", + "label": "CMDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9727", + "standardCode": { + "id": "Code_10483", + "extensionAttributes": [], + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_319", + "extensionAttributes": [], + "name": "CMCLAS", + "label": "CMCLAS", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9728", + "standardCode": { + "id": "Code_10484", + "extensionAttributes": [], + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_320", + "extensionAttributes": [], + "name": "CMINDC", + "label": "CMINDC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9729", + "standardCode": { + "id": "Code_10485", + "extensionAttributes": [], + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_321", + "extensionAttributes": [], + "name": "CMDOSE", + "label": "CMDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9730", + "standardCode": { + "id": "Code_10486", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_322", + "extensionAttributes": [], + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9731", + "standardCode": { + "id": "Code_10487", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_323", + "extensionAttributes": [], + "name": "CMDOSU", + "label": "CMDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9732", + "standardCode": { + "id": "Code_10488", + "extensionAttributes": [], + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_324", + "extensionAttributes": [], + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9733", + "standardCode": { + "id": "Code_10489", + "extensionAttributes": [], + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_325", + "extensionAttributes": [], + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9734", + "standardCode": { + "id": "Code_10490", + "extensionAttributes": [], + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_326", + "extensionAttributes": [], + "name": "CMROUTE", + "label": "CMROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9735", + "standardCode": { + "id": "Code_10491", + "extensionAttributes": [], + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_327", + "extensionAttributes": [], + "name": "CMSTDTC", + "label": "CMSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9736", + "standardCode": { + "id": "Code_10492", + "extensionAttributes": [], + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_328", + "extensionAttributes": [], + "name": "CMENDTC", + "label": "CMENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9737", + "standardCode": { + "id": "Code_10493", + "extensionAttributes": [], + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_329", + "extensionAttributes": [], + "name": "CMSTRF", + "label": "CMSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9738", + "standardCode": { + "id": "Code_10494", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_330", + "extensionAttributes": [], + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9739", + "standardCode": { + "id": "Code_10495", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_331", + "extensionAttributes": [], + "name": "CMSTTPT", + "label": "CMSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9740", + "standardCode": { + "id": "Code_10496", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_332", + "extensionAttributes": [], + "name": "CMENRF", + "label": "CMENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9741", + "standardCode": { + "id": "Code_10497", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_333", + "extensionAttributes": [], + "name": "CMENRTPT", + "label": "CMENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9742", + "standardCode": { + "id": "Code_10498", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_334", + "extensionAttributes": [], + "name": "CMENTPT", + "label": "CMENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9743", + "standardCode": { + "id": "Code_10499", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9908", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10664", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RANDOM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Randomization", + "label": "Randomization", + "synonyms": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [ + { + "id": "BiomedicalConceptProperty_335", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_53", + "instanceType": "ResponseCode", + "name": "RANDOM", + "label": "RANDOM", + "isEnabled": true, + "code": { + "id": "Code_10501", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "RANDOM", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9744", + "standardCode": { + "id": "Code_10500", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_336", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_54", + "instanceType": "ResponseCode", + "name": "Trial is Randomized", + "label": "Trial is Randomized", + "isEnabled": true, + "code": { + "id": "Code_10503", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial is Randomized", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9746", + "standardCode": { + "id": "Code_10502", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_337", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9748", + "standardCode": { + "id": "Code_10504", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_338", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9749", + "standardCode": { + "id": "Code_10505", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_339", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9750", + "standardCode": { + "id": "Code_10506", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_340", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9751", + "standardCode": { + "id": "Code_10507", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10032", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "synonyms": [ + "PT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [ + { + "id": "BiomedicalConceptProperty_341", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9752", + "standardCode": { + "id": "Code_10508", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_342", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_55", + "instanceType": "ResponseCode", + "name": "s", + "label": "s", + "isEnabled": true, + "code": { + "id": "Code_10510", + "extensionAttributes": [], + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9753", + "standardCode": { + "id": "Code_10509", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_343", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_56", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10512", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9755", + "standardCode": { + "id": "Code_10511", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_344", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9757", + "standardCode": { + "id": "Code_10513", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_345", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9758", + "standardCode": { + "id": "Code_10514", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5695", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5774", + "extensionAttributes": [], + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_53", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "synonyms": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [ + { + "id": "BiomedicalConceptProperty_346", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9759", + "standardCode": { + "id": "Code_10515", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_347", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_57", + "instanceType": "ResponseCode", + "name": "RATIO", + "label": "RATIO", + "isEnabled": true, + "code": { + "id": "Code_10517", + "extensionAttributes": [], + "code": "C44256", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RATIO", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9760", + "standardCode": { + "id": "Code_10516", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_348", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_58", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10519", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9762", + "standardCode": { + "id": "Code_10518", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_349", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9764", + "standardCode": { + "id": "Code_10520", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5696", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5775", + "extensionAttributes": [], + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/APTTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "synonyms": [ + "APTT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [ + { + "id": "BiomedicalConceptProperty_350", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9765", + "standardCode": { + "id": "Code_10521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_351", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_59", + "instanceType": "ResponseCode", + "name": "s", + "label": "s", + "isEnabled": true, + "code": { + "id": "Code_10523", + "extensionAttributes": [], + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9766", + "standardCode": { + "id": "Code_10522", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_352", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_60", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10525", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9768", + "standardCode": { + "id": "Code_10524", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_353", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9770", + "standardCode": { + "id": "Code_10526", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9909", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10665", + "extensionAttributes": [], + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_354", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9771", + "standardCode": { + "id": "Code_10527", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_355", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9772", + "standardCode": { + "id": "Code_10528", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_356", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_61", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10530", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9773", + "standardCode": { + "id": "Code_10529", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_357", + "extensionAttributes": [], + "name": "LBMETHOD", + "label": "LBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9775", + "standardCode": { + "id": "Code_10531", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_358", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9776", + "standardCode": { + "id": "Code_10532", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_359", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9777", + "standardCode": { + "id": "Code_10533", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9910", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10666", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRIGSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "synonyms": [ + "TRIG", + "Triglycerides" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [ + { + "id": "BiomedicalConceptProperty_360", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9778", + "standardCode": { + "id": "Code_10534", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_361", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9779", + "standardCode": { + "id": "Code_10535", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_362", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_62", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10537", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9780", + "standardCode": { + "id": "Code_10536", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_363", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9782", + "standardCode": { + "id": "Code_10538", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_364", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9783", + "standardCode": { + "id": "Code_10539", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9911", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10667", + "extensionAttributes": [], + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "id": "BiomedicalConceptProperty_365", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9784", + "standardCode": { + "id": "Code_10540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_366", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9785", + "standardCode": { + "id": "Code_10541", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_367", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_63", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10543", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9786", + "standardCode": { + "id": "Code_10542", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_368", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9788", + "standardCode": { + "id": "Code_10544", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_369", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9789", + "standardCode": { + "id": "Code_10545", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "HDL", + "HDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [ + { + "id": "BiomedicalConceptProperty_370", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9790", + "standardCode": { + "id": "Code_10546", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_371", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9791", + "standardCode": { + "id": "Code_10547", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_372", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_64", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10549", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9792", + "standardCode": { + "id": "Code_10548", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_373", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9794", + "standardCode": { + "id": "Code_10550", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_374", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9795", + "standardCode": { + "id": "Code_10551", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5697", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5776", + "extensionAttributes": [], + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "LDL", + "LDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [ + { + "id": "BiomedicalConceptProperty_375", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9796", + "standardCode": { + "id": "Code_10552", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_376", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9797", + "standardCode": { + "id": "Code_10553", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_377", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_65", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10555", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9798", + "standardCode": { + "id": "Code_10554", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_378", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9800", + "standardCode": { + "id": "Code_10556", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_379", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9801", + "standardCode": { + "id": "Code_10557", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_7397", + "extensionAttributes": [], + "standardCode": { + "id": "Code_7476", + "extensionAttributes": [], + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [], + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "code": { + "id": "AliasCode_9912", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10668", + "extensionAttributes": [], + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "id": "BiomedicalConceptProperty_380", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9802", + "standardCode": { + "id": "Code_10558", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_381", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9803", + "standardCode": { + "id": "Code_10559", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_382", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_66", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10561", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9804", + "standardCode": { + "id": "Code_10560", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_383", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9806", + "standardCode": { + "id": "Code_10562", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_384", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9807", + "standardCode": { + "id": "Code_10563", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5698", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5777", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "id": "BiomedicalConceptProperty_385", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9808", + "standardCode": { + "id": "Code_10564", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_386", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9809", + "standardCode": { + "id": "Code_10565", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_387", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_67", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10567", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9810", + "standardCode": { + "id": "Code_10566", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_388", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9812", + "standardCode": { + "id": "Code_10568", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_389", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9813", + "standardCode": { + "id": "Code_10569", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9913", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10669", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "id": "BiomedicalConceptProperty_390", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9814", + "standardCode": { + "id": "Code_10570", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_391", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9815", + "standardCode": { + "id": "Code_10571", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_392", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_68", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10573", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9816", + "standardCode": { + "id": "Code_10572", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_393", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9818", + "standardCode": { + "id": "Code_10574", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_394", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9819", + "standardCode": { + "id": "Code_10575", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5699", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5778", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "id": "BiomedicalConceptProperty_395", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9820", + "standardCode": { + "id": "Code_10576", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_396", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9821", + "standardCode": { + "id": "Code_10577", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_397", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_69", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10579", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9822", + "standardCode": { + "id": "Code_10578", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_398", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9824", + "standardCode": { + "id": "Code_10580", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_399", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9825", + "standardCode": { + "id": "Code_10581", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5700", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5779", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "id": "BiomedicalConceptProperty_400", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9826", + "standardCode": { + "id": "Code_10582", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_401", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9827", + "standardCode": { + "id": "Code_10583", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_402", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_70", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10585", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9828", + "standardCode": { + "id": "Code_10584", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_403", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9830", + "standardCode": { + "id": "Code_10586", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_404", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9831", + "standardCode": { + "id": "Code_10587", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5701", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5780", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "id": "BiomedicalConceptProperty_405", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9832", + "standardCode": { + "id": "Code_10588", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_406", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9833", + "standardCode": { + "id": "Code_10589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_407", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_71", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10591", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9834", + "standardCode": { + "id": "Code_10590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_408", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9836", + "standardCode": { + "id": "Code_10592", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_409", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9837", + "standardCode": { + "id": "Code_10593", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5702", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5781", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CO2BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "synonyms": [ + "Carbon Dioxide", + "CO2" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [ + { + "id": "BiomedicalConceptProperty_410", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9838", + "standardCode": { + "id": "Code_10594", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_411", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9839", + "standardCode": { + "id": "Code_10595", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_412", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_72", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10597", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9840", + "standardCode": { + "id": "Code_10596", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_413", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9842", + "standardCode": { + "id": "Code_10598", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_414", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9843", + "standardCode": { + "id": "Code_10599", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5703", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5782", + "extensionAttributes": [], + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "id": "BiomedicalConceptProperty_415", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9844", + "standardCode": { + "id": "Code_10600", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_416", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9845", + "standardCode": { + "id": "Code_10601", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_417", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_73", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10603", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9846", + "standardCode": { + "id": "Code_10602", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_418", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9848", + "standardCode": { + "id": "Code_10604", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_419", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9849", + "standardCode": { + "id": "Code_10605", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5704", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5783", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "id": "BiomedicalConceptProperty_420", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9850", + "standardCode": { + "id": "Code_10606", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_421", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9851", + "standardCode": { + "id": "Code_10607", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_422", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_74", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10609", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9852", + "standardCode": { + "id": "Code_10608", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_423", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9854", + "standardCode": { + "id": "Code_10610", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_424", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9855", + "standardCode": { + "id": "Code_10611", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5705", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5784", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_425", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9856", + "standardCode": { + "id": "Code_10612", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_426", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9857", + "standardCode": { + "id": "Code_10613", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_427", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_75", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10615", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9858", + "standardCode": { + "id": "Code_10614", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_428", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9860", + "standardCode": { + "id": "Code_10616", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_429", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9861", + "standardCode": { + "id": "Code_10617", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5706", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5785", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "id": "BiomedicalConceptProperty_430", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9862", + "standardCode": { + "id": "Code_10618", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_431", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9863", + "standardCode": { + "id": "Code_10619", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_432", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_76", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10621", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9864", + "standardCode": { + "id": "Code_10620", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_433", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9866", + "standardCode": { + "id": "Code_10622", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_434", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9867", + "standardCode": { + "id": "Code_10623", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5707", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5786", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "id": "BiomedicalConceptProperty_435", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9868", + "standardCode": { + "id": "Code_10624", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_436", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9869", + "standardCode": { + "id": "Code_10625", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_437", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_77", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10627", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9870", + "standardCode": { + "id": "Code_10626", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_438", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9872", + "standardCode": { + "id": "Code_10628", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_439", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9873", + "standardCode": { + "id": "Code_10629", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_717", + "extensionAttributes": [], + "standardCode": { + "id": "Code_757", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [], + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [ + { + "id": "BiomedicalConceptProperty_440", + "extensionAttributes": [], + "name": "Anatomic Site", + "label": "Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9874", + "standardCode": { + "id": "Code_10630", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_441", + "extensionAttributes": [], + "name": "Observation Result", + "label": "Observation Result", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_9875", + "standardCode": { + "id": "Code_10631", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_442", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9876", + "standardCode": { + "id": "Code_10632", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_443", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9877", + "standardCode": { + "id": "Code_10633", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_444", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9878", + "standardCode": { + "id": "Code_10634", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_445", + "extensionAttributes": [], + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9879", + "standardCode": { + "id": "Code_10635", + "extensionAttributes": [], + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_446", + "extensionAttributes": [], + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9880", + "standardCode": { + "id": "Code_10636", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_447", + "extensionAttributes": [], + "name": "Unit of Length", + "label": "Unit of Length", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9881", + "standardCode": { + "id": "Code_10637", + "extensionAttributes": [], + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5708", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5787", + "extensionAttributes": [], + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TUMERGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Tumor Identification", + "label": "Tumor Identification", + "synonyms": [ + "TUMIDENT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [ + { + "id": "BiomedicalConceptProperty_448", + "extensionAttributes": [], + "name": "TUORRES", + "label": "TUORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_78", + "instanceType": "ResponseCode", + "name": "TARGET", + "label": "TARGET", + "isEnabled": true, + "code": { + "id": "Code_10639", + "extensionAttributes": [], + "code": "C94520", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "TARGET", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9882", + "standardCode": { + "id": "Code_10638", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_449", + "extensionAttributes": [], + "name": "TULOC", + "label": "TULOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9884", + "standardCode": { + "id": "Code_10640", + "extensionAttributes": [], + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_450", + "extensionAttributes": [], + "name": "TULAT", + "label": "TULAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9885", + "standardCode": { + "id": "Code_10641", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_451", + "extensionAttributes": [], + "name": "TUDIR", + "label": "TUDIR", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9886", + "standardCode": { + "id": "Code_10642", + "extensionAttributes": [], + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_452", + "extensionAttributes": [], + "name": "TUMETHOD", + "label": "TUMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9887", + "standardCode": { + "id": "Code_10643", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_453", + "extensionAttributes": [], + "name": "TUEVAL", + "label": "TUEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9888", + "standardCode": { + "id": "Code_10644", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_454", + "extensionAttributes": [], + "name": "TUEVALID", + "label": "TUEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9889", + "standardCode": { + "id": "Code_10645", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_455", + "extensionAttributes": [], + "name": "TUREFID", + "label": "TUREFID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9890", + "standardCode": { + "id": "Code_10646", + "extensionAttributes": [], + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_456", + "extensionAttributes": [], + "name": "TULNKID", + "label": "TULNKID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9891", + "standardCode": { + "id": "Code_10647", + "extensionAttributes": [], + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_457", + "extensionAttributes": [], + "name": "TUDTC", + "label": "TUDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9892", + "standardCode": { + "id": "Code_10648", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5709", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5788", + "extensionAttributes": [], + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NTRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "synonyms": [ + "NTRGRESP", + "Non-Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [ + { + "id": "BiomedicalConceptProperty_458", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9893", + "standardCode": { + "id": "Code_10649", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_459", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9894", + "standardCode": { + "id": "Code_10650", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_460", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9895", + "standardCode": { + "id": "Code_10651", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_461", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9896", + "standardCode": { + "id": "Code_10652", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5710", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5789", + "extensionAttributes": [], + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "synonyms": [ + "TRGRESP", + "Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [ + { + "id": "BiomedicalConceptProperty_462", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9897", + "standardCode": { + "id": "Code_10653", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_463", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9898", + "standardCode": { + "id": "Code_10654", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_464", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9899", + "standardCode": { + "id": "Code_10655", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_465", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9900", + "standardCode": { + "id": "Code_10656", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5711", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5790", + "extensionAttributes": [], + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OVRLRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Overall Response", + "label": "Overall Response", + "synonyms": [ + "OVRLRESP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [ + { + "id": "BiomedicalConceptProperty_466", + "extensionAttributes": [], + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9901", + "standardCode": { + "id": "Code_10657", + "extensionAttributes": [], + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_467", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9902", + "standardCode": { + "id": "Code_10658", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_468", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9903", + "standardCode": { + "id": "Code_10659", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_469", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9904", + "standardCode": { + "id": "Code_10660", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_470", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9905", + "standardCode": { + "id": "Code_10661", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_763", + "extensionAttributes": [], + "standardCode": { + "id": "Code_803", + "extensionAttributes": [], + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Magnesium Measurement", + "label": "Magnesium Measurement (C64840)", + "description": "A quantitative measurement of the amount of magnesium present in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64840", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_2", + "extensionAttributes": [], + "name": "Hepatitis B DNA Measurement", + "label": "Hepatitis B DNA Measurement (C103404)", + "description": "A measurement of the Hepatitis B virus DNA in a biological specimen", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103404", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_3", + "extensionAttributes": [], + "name": "Hepatitis B Surface Antigen", + "label": "Hepatitis B Virus Surface Antigen Measurement (C64850)", + "description": "A measurement of the surface antigen reaction of a biological specimen to the Hepatitis B virus.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64850", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_4", + "extensionAttributes": [], + "name": "HBsAb+", + "label": "Hepatitis B Surface Antibody Positive (C153243)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153243", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_5", + "extensionAttributes": [], + "name": "HBsAb-", + "label": "Hepatitis B Surface Antibody Negative (C153244)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have not been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153244", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_6", + "extensionAttributes": [], + "name": "HCV RNA Positive", + "label": "HCV RNA Positive (C162042)", + "description": "An indication that hepatitis C RNA has been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C162042", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_7", + "extensionAttributes": [], + "name": "PFTs with DLCO", + "label": "Pulmonary function tests (PFTs) that include DLCO (Diffusing Capacity of the Lungs for Carbon Monoxide) (C38081)", + "description": "A broad range of tests that are performed to assess how well lungs inhale and exhale air and how efficiently they transfer oxygen into the blood.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C38081", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_8", + "extensionAttributes": [], + "name": "Dietary Phosphorus Measurement", + "label": "Dietary Phosphorus Measurement (C184481)", + "description": "A determination of the phosphorus in a nutritional product or meal, or a portion thereof.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C184481", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "Adherence", + "label": "Adherence (C25729)", + "description": "The act of abiding by a stated treatment plan or protocol.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C25729", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Patient Compliance", + "label": "Patient Compliance (C39490)", + "description": "The extent to which a patient conforms to medical advice regarding prescribed regimen, lifestyle, dietary changes, follow-up schedule and other recommendations.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C39490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "Compliance Monitoring", + "label": "Compliance Monitoring (C62737)", + "description": "The act of continuously assessing whether an individual is adhering to their treatment plan.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C62737", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "Non-Compliance With Study Drug", + "label": "Non-Compliance With Study Drug (C49631)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study medication. (NCI)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C49631", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "Non-Compliance with Study Product", + "label": "Non-Compliance with Study Product (C210354)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study product.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C210354", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "Trial Compliance", + "label": "Trial Compliance (C142734)", + "description": "Adherence to clinical trial-related requirements, good clinical practice (GCP) requirements, and the applicable regulatory requirements. (ICH)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C142734", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "

See section 1 Introduction.

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

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor \u03b1 activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell\u2019s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole \u2265 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

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

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

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

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

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

Fulvestrant (Faslodex\u00ae, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex\u00ae\n(fulvestrant) Injection for \u201c\u2026the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy\u201d.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

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

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

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

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

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

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican\u00ae) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress\u00ae) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor\u00ae and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor\u00ae received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia\u00ae in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor\u00ae was\napproved for \u201cprogressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease\u201d in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor\u00ae received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor\u00ae received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n\u2022

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\u2022

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

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

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n\u2022\n\u2022\n\u2022

\n

\u2022\n\u2022

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n\u2022

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\u2022

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 \u03bcM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or \u2018resistant\u2019 (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

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

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator\u2019s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-\u03c4 is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-\u03c4 and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator\u2019s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator\u2019s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican\u00ae, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress\u00ae) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator\u2019s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor\u00ae for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n\u2022\n\u2022\n\u2022\n\u2022

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor\u00ae) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence \u2265 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence \u2265\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence \u2265 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence \u2265 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator\u2019s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

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

See section 1.4.3 Clinical Experience.

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

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

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

See section 2 Objectives.

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

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

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

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

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

See section 3 Selection of Patients.

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

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n\u2022\n\u2022

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n\u2022

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage \u2265 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

total white blood cell count (leukocytes, WBC) \u2265 3.0 x 109/L, absolute\nneutrophil count (ANC) \u2265 1.5 x 109/L and platelet count \u2265 100 x 109/L\nhemoglobin \u2265 9 g/dL\nserum bilirubin \u2264 1.5 x ULN\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\nserum creatinine \u2264 1.5 x ULN\nserum albumin \u2265 3 g/dL\nfasting serum cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND fasting\ntriglycerides \u2264 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR \u2264 1.5 (Anticoagulation is allowed if target INR \u2264 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin \u2264 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as \u2265 20 mm by chest x-ray, as \u2265\n10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n\u2022

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\u2022

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\u2022

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient\u2019s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

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

See section 4 Randomization Procedures.

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

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

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

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

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

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin \u2264 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

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

See section 5 Treatment Plan.

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

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

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

See section 5.2 Dosing and Administration.

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

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

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

\u2022

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\u2022

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\u2022

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\u2022

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\u2022

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\u2022

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\u2022

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

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

See section 5.3 Dose Modifications and Toxicity Management.

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

Placebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n\u2022

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\u2022

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is \u2264 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\u2022

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\u2022

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\u2022

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\u2022

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nIf resolution occurs within \u2264 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade \u2264 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, \u2265 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade \u22641

\n

(platelets <50, \u2265 25 x 10 /L)

\n

If resolution occurs \u2264 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, \u2265 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade \u2264 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade \u22641 or baseline\nvalue\nIf AE resolution occurs \u2264 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade \u2264 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade \u2264 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

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

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for \u2265 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence \u2265 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence \u2265 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator\u2019s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

\u2264 baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n\u2264 baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n\u2022

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\u2022

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered \u2018cured\u2019).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n\u02c32 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed \u201cmiracle mouth wash\u2019\u2019 QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using \u201cmiracle mouthwash\u2019\u2019.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and \u201cmiracle mouth wash\u201d.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and \u201cmiracle mouth wash\u201d\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase\u00ae) or Periogard\u00ae oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol\u2013containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to \u2264 grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade \u2264\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to \u2264 grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade \u2264 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to \u2264\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

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

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken \u2264 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

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

The following restrictions apply during the entire duration of the study:\n\u2022

\n

No other investigational therapy should be given to patients.

\n

\u2022

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\u2022

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\u2022

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\u2022

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\u2022

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\u2022

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\u2022

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\u2022

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\u2022

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John\u2019s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week\u2019s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient\u2019s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

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

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

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

See section 5.4 Supportive Care.

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

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to \u2264 grade 1 (or if >grade 1, event must be permanent and stable).

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

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n\u2022

\n

Withdrawal of the patient\u2019s consent (patient\u2019s decision to withdraw for any reason)

\n

\u2022

\n

Termination of the study by PrECOG

\n

\u2022

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\u2022

\n

Inability to comply with protocol

\n

\u2022

\n

Discretion of the investigator

\n

\u2022

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

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

See section 6 Measurement of Effect.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_6_1", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

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

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

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

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n\u2022

\n

\u2265 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\u2022

\n

\u2265 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\u2022

\n

\u2265 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be \u2265 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with \u2265 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n\u2018Cystic lesions\u2019 thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

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

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and \u2265 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n\u2022\n\u2022

\n

\u2022

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A \u2018positive\u2019 FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest \u201cincrease\u201d in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from \u201ctrace\u201d to\n\u201clarge\u201d, an increase in nodal disease from \u201clocalized\u201d to \u201cwidespread\u201d, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of \u201cnon-target\u201d lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient\u2019s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n\u201csymptomatic deterioration\u201d. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*\u2018Non-CR/Non-PD\u2019 is preferred over \u2018stable disease\u2019 for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

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

See section 6.1.4 Response Criteria.

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

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

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

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN \u2264 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

\u00a3

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

\u00a3

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: \u2264 4 weeks of randomization; if assessments required \u2264 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: \u2264 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered \u2018cured\u2019) should have HCV RNAPCR testing performed on \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until \u2264 grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n\u00a3 Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

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

See section 7 Study Parameters.

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

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

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

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin \u2264 4 weeks of randomization to protocol therapy:\n\u2022

\n

Medical history

\n

\u2022

\n

Assessment of baseline signs and symptoms

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\u2022

\n

PT with INR

\n

\u2022

\n

Urinalysis

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n\u2022 known or suspected past hepatitis B infection\n\u2022 blood transfusion(s) prior to 1990\n\u2022 current or prior IV drug users\n\u2022 current or prior dialysis\n\u2022 household contact with hepatitis B infected patient(s)\n\u2022 current or prior high-risk sexual activity\n\u2022 body piercing or tattoos\n\u2022 mother known to have hepatitis B\n\u2022 history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon \u2018curative\u2019 treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

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

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within \u2264 7 days of Cycle 1 Day 1.

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\u2022

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\u2022

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

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

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to \u2264 grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\u2022

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

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

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until \u2264 grade 1\nor if the grade is >1, the event must be permanent and stable.\n\u2022

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\u2022

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n\u2022

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

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

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264 grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

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

See section 8 Drug Formulation and Procurement.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_8_1", + "text": "

See section 8.1 Everolimus.

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

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

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

Everolimus should be stored at room temperature between 20\u00b0C to 25\u00b0C (68\u00b0F to 77\u00b0F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n\u2022

\n

Everolimus/placebo dose may be taken with or without food.

\n

\u2022

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\u2022

\n

Vomited doses should not be replaced.

\n

\u2022

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

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

See section 8.1.3 Handling, Dispensing and Administration.

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

The most common adverse reactions (incidence \u2265 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence \u2265 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

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

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n\u2022

\n

Amount received and placed in storage area.

\n

\u2022

\n

Amount currently in storage area.

\n

\u2022

\n

Label ID number or batch number.

\n

\u2022

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\u2022

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\u2022

\n

Amount transferred to another area for dispensing or storage.

\n

\u2022

\n

Non-study disposition (e.g., wasted, broken).

\n

\u2022

\n

Amount returned to manufacturer, if applicable

\n

\u2022

\n

Amount destroyed at study site, if applicable

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

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site\u2019s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

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

8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide\u2122) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2\u00b0-8\u00b0C (36\u00b0-46\u00b0F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex\u00ae Package Insert 1621903 Rev 12/11)\n\u2022 Remove the glass syringe barrel from tray and check that it is not damaged\n\u2022 Remove perforated patient record label from syringe\n\u2022 Peel open the safety needle outer packaging.\n\u2022 Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n\u2022 Twist to lock the needle to the luer container.\n\u2022 Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n\u2022 Remove excess gas from the syringe.\n\u2022 Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle \u2018bevel up\u2019 position is\norientated to the lever arm (Figure 3).\n\u2022 Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n\u2022 Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n\u2022 If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n\u2022 Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex\u00ae treatment groups,\nregardless of the investigator\u2019s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex\u00ae and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex\u00ae If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher\u2019s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

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

See section 9 Statistical Considerations.

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

See section 9.1 Primary Endpoint Analysis.

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

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

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

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

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

10 Adverse Event Reporting

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

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator\u2019s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n\u2022

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\u2022

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\u2022

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\u2022

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\u2022

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories \u2018Definite\u2019, \u2018probable\u2019 and \u2018possible\u2019 are considered study drug related.\nCategories \u2018not likely\u2019 and \u2018not related\u2019 are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

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

10.2 Handling of Serious Adverse Events (SAEs)

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

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n\u2022

\n

results in death,

\n

\u2022

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\u2022

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\u2022

\n

results in persistent or significant disability/incapacity,

\n

\u2022

\n

is a congenital anomaly/birth defect,

\n

\u2022

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

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

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator\u2019s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM \u2013 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE\u2019s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

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

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

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

11 Administrative

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

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

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

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

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

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

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

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

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

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

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

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

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

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

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

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n\u2022\n\u2022\n\u2022

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

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

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n\u00b0C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

\u00b5M\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

\u00b5g

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

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

13 Appendix A: Eligibility Checklist\n\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n\u2264 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) \u2265 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) \u2265 1.5 x 10 /L and platelet count \u2265 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin \u2265 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin \u2264 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine \u2264 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin \u2265 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND Fasting Triglycerides \u2264 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR \u2264 1.5. (Anticoagulation is allowed if target INR \u2264 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n\u2265 20 mm by chest x-ray, as \u2265 10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n\u2022 Bisphosphonates, Zometa or Xgeva for bone metastases\n\u2022 Hormonal therapy (e.g., AI, Tamoxifen)\n\u2022 a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient\u2019s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

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

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

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

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John\u2019s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John\u2019s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John\u2019s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA\u2019s\n\u201cGuidance for Industry, Drug Interaction Studies\u201d, the University of Washington\u2019s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

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

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient\u2019s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

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

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

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

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

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

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex\u00ae) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO\u2019Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses\u2019 Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator\u2019s Statement\n1.

\n

I have carefully read this protocol entitled \u201cRandomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014\u201d (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

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

See section 20 Investigator's Statement.

", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "NCT01797120_PROTOCOL", + "label": "PrE0102: Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant plus Everolimus", + "description": "Version 2.0, January 22 2014 protocol document for PrECOG study PrE0102 (NCT01797120).", + "language": { + "id": "Code_DocLang_1", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_DocType_1", + "extensionAttributes": [], + "code": "C70817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Protocol", + "instanceType": "Code" + }, + "templateName": "PrECOG Protocol Template", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_DocStatus_1", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_DocVersion_1", + "extensionAttributes": [], + "name": "PROTOCOL_VERSION_DATE", + "label": "Protocol Version Date", + "description": "Date of the final protocol version", + "type": { + "id": "Code_DocDate_1", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2014-01-22", + "geographicScopes": [], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "pi-fix-bc-props-specs-in-usdm" +} diff --git a/output/json/NCT01797120-narrative-test.json b/output/json/NCT01797120-narrative-test.json new file mode 100644 index 0000000..dd74ee5 --- /dev/null +++ b/output/json/NCT01797120-narrative-test.json @@ -0,0 +1,13005 @@ +{ + "study": { + "id": null, + "extensionAttributes": [], + "name": "H2Q-MC-LZZT", + "description": "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", + "label": "Alzheimer Study", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_153", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_154", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_155", + "url": "tool-version", + "valueString": "1.5.0", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_156", + "url": "usdm-creation-date", + "valueString": "20260625T15:55", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "H2Q-MC-LZZT", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "Darren", + "label": "Alzheimer Study", + "description": "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", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_55", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_84", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_164", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_17", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_18", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_2", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_85", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_165", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_19", + "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": "DOSE", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_86", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_166", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_20", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_21", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_5", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_87", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_167", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_88", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_168", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_60", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_89", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_169", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_61", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_90", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_170", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_92", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_171", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_94", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_172", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_67", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_96", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_173", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_98", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_174", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_70", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": null, + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_175", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_22", + "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": "Informed consent activity", + "previousId": null, + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "Inclusion/Exclusion Criteria", + "label": "Inclusion/Exclusion Criteria", + "description": "Inclusion/Exclusion Criteria activity", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "Patient number assigned", + "label": "Patient Number assigned", + "description": "Patient Number assigned activity", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "Demographics", + "label": "Demographics", + "description": "Demographics activity", + "previousId": "Activity_3", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6", + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "Education", + "label": "Education", + "description": "Education activity", + "previousId": "Activity_4", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_11", + "BiomedicalConcept_12" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "Hachinski", + "label": "Hachinski", + "description": "Hachinski test", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_10", + "BiomedicalConceptSurrogate_11", + "BiomedicalConceptSurrogate_12", + "BiomedicalConceptSurrogate_13", + "BiomedicalConceptSurrogate_14", + "BiomedicalConceptSurrogate_15", + "BiomedicalConceptSurrogate_16", + "BiomedicalConceptSurrogate_17", + "BiomedicalConceptSurrogate_18", + "BiomedicalConceptSurrogate_9" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "MMSE test", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24", + "BiomedicalConceptSurrogate_25", + "BiomedicalConceptSurrogate_26" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "Physical examination", + "label": "Physical examination", + "description": "Physical examination results", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_159", + "BiomedicalConcept_160", + "BiomedicalConcept_161" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "Medical History", + "label": "Medical History", + "description": "Medical History response", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "Habits", + "label": "Habits", + "description": "List of habits", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_15", + "BiomedicalConcept_16", + "BiomedicalConcept_17" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "Chest X-ray", + "label": "Chest X-ray", + "description": "Chest X-ray result", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "Apo E genotyping", + "label": "Apo E genotyping", + "description": "Apo E genotyping test", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "Patient randomised", + "label": "Patient randomized", + "description": "Patient randomized activity", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "Vital Signs", + "label": "Vital Signs", + "description": "Vital Signs result", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_23", + "BiomedicalConcept_24", + "BiomedicalConcept_25", + "BiomedicalConcept_26" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "Ambulatory ECG placed", + "label": "Ambulatory ECG placed", + "description": "Ambulatory ECG placed activity", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_162" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "Ambulatory ECG removed", + "label": "Ambulatory ECG removed", + "description": "Ambulatory ECG removed activity", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_163" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG", + "description": "ECG results", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_27", + "BiomedicalConcept_28", + "BiomedicalConcept_29", + "BiomedicalConcept_30", + "BiomedicalConcept_31", + "BiomedicalConcept_32", + "BiomedicalConcept_33", + "BiomedicalConcept_34", + "BiomedicalConcept_35", + "BiomedicalConcept_36", + "BiomedicalConcept_37", + "BiomedicalConcept_38", + "BiomedicalConcept_39", + "BiomedicalConcept_40", + "BiomedicalConcept_41", + "BiomedicalConcept_42", + "BiomedicalConcept_43", + "BiomedicalConcept_44", + "BiomedicalConcept_45", + "BiomedicalConcept_46", + "BiomedicalConcept_47", + "BiomedicalConcept_48", + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "Placebo TTS Test", + "label": "Placebo TTS Test", + "description": "Placebo TTS Test results", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_164" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "CT Scan", + "label": "CT Scan", + "description": "CT Scan results", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "MRI", + "label": "MRI", + "description": "MRI results", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "MRI, CT Scan", + "label": "MRI, CT Scan", + "description": "MRI, CT Scan results", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_165", + "BiomedicalConcept_166" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "Concomitant medications", + "label": "Concomitant medications", + "description": "Concomitant medications information", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_54", + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "Hematology", + "label": "Hematology", + "description": "Hematology results", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59", + "BiomedicalConcept_60", + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72", + "BiomedicalConcept_73" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "Chemistry", + "label": "Chemistry", + "description": "Chemistry test results", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77", + "BiomedicalConcept_78", + "BiomedicalConcept_79", + "BiomedicalConcept_80", + "BiomedicalConcept_81", + "BiomedicalConcept_82", + "BiomedicalConcept_83", + "BiomedicalConcept_84", + "BiomedicalConcept_85", + "BiomedicalConcept_86", + "BiomedicalConcept_87", + "BiomedicalConcept_88", + "BiomedicalConcept_89", + "BiomedicalConcept_90", + "BiomedicalConcept_91", + "BiomedicalConcept_92", + "BiomedicalConcept_93", + "BiomedicalConcept_94", + "BiomedicalConcept_95", + "BiomedicalConcept_96", + "BiomedicalConcept_97", + "BiomedicalConcept_98", + "BiomedicalConcept_99", + "BiomedicalConcept_100" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "Urinalysis", + "label": "Urinalysis", + "description": "Urinalysis results", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_101", + "BiomedicalConcept_102", + "BiomedicalConcept_103", + "BiomedicalConcept_104", + "BiomedicalConcept_105", + "BiomedicalConcept_106", + "BiomedicalConcept_107", + "BiomedicalConcept_108", + "BiomedicalConcept_109" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "Plasma Specimen (Xanomeline)", + "label": "Plasma Specimen (Xanomeline)", + "description": "Plasma Specimen (Xanomeline) results", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "Hemoglobin A1C", + "label": "Hemoglobin A1C", + "description": "Hemoglobin A1C results", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_110", + "BiomedicalConcept_111" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "Study Drug", + "label": "Study Drug", + "description": "Study Drug activity", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_112" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "description": "TTS Acceptability Survey results", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_113", + "BiomedicalConcept_114", + "BiomedicalConcept_115", + "BiomedicalConcept_116", + "BiomedicalConcept_117" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "ADAS-Cog", + "label": "ADAS-Cog", + "description": "ADAS-Cog results", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_172", + "BiomedicalConcept_173", + "BiomedicalConcept_174", + "BiomedicalConcept_175", + "BiomedicalConcept_176", + "BiomedicalConcept_177", + "BiomedicalConcept_178", + "BiomedicalConcept_179", + "BiomedicalConcept_180", + "BiomedicalConcept_181", + "BiomedicalConcept_182", + "BiomedicalConcept_183", + "BiomedicalConcept_184", + "BiomedicalConcept_185", + "BiomedicalConcept_186", + "BiomedicalConcept_187" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "CIBIC+", + "label": "CIBIC+", + "description": "CIBIC+ results", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_27" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "DAD", + "label": "DAD", + "description": "DAD results", + "previousId": "Activity_31", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_28" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "NPI-X", + "label": "NPI-X", + "description": "NPI-X results", + "previousId": "Activity_32", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_29", + "BiomedicalConceptSurrogate_30", + "BiomedicalConceptSurrogate_31", + "BiomedicalConceptSurrogate_32", + "BiomedicalConceptSurrogate_33", + "BiomedicalConceptSurrogate_34" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "Adverse Events", + "label": "Adverse Events", + "description": "Activities to conduct if occurence of Adverse Event", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_134", + "BiomedicalConcept_135" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "Check Adverse Events", + "label": "Check Adverse Events", + "description": "TL: Adverse Event Timeline", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_170", + "BiomedicalConcept_171" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "Patient Summary", + "label": "Patient Summary", + "description": "Patient Summary (Study Conclusion)", + "previousId": "Activity_35", + "nextId": "Activity_37", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_136", + "BiomedicalConcept_137", + "BiomedicalConcept_138", + "BiomedicalConcept_139", + "BiomedicalConcept_140", + "BiomedicalConcept_141", + "BiomedicalConcept_142", + "BiomedicalConcept_143", + "BiomedicalConcept_144", + "BiomedicalConcept_145", + "BiomedicalConcept_146", + "BiomedicalConcept_147", + "BiomedicalConcept_148", + "BiomedicalConcept_149", + "BiomedicalConcept_150", + "BiomedicalConcept_151", + "BiomedicalConcept_152" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_37", + "extensionAttributes": [], + "name": "Supine", + "label": "Supine", + "description": "Supine", + "previousId": "Activity_36", + "nextId": "Activity_38", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_168" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_38", + "extensionAttributes": [], + "name": "Vital Signs Supine", + "label": "Vital Signs Supine", + "description": "Vital Signs Supine", + "previousId": "Activity_37", + "nextId": "Activity_39", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_153", + "BiomedicalConcept_154", + "BiomedicalConcept_155" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_39", + "extensionAttributes": [], + "name": "Stand", + "label": "Stand", + "description": "Stand", + "previousId": "Activity_38", + "nextId": "Activity_40", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_169" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_40", + "extensionAttributes": [], + "name": "Vital Signs Standing", + "label": "Vital Signs Standing", + "description": "Vital Signs Standing", + "previousId": "Activity_39", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_156", + "BiomedicalConcept_157", + "BiomedicalConcept_158" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo ARM", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 low dose", + "type": { + "id": "Code_3", + "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_4", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 high dose", + "type": { + "id": "Code_5", + "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_6", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_3", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "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_3", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_16", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_17", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_18", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_19", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_20", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment 1", + "description": "Treatment 1 Epoch", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment 2", + "description": "Treatment 2 Epoch", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment 3", + "description": "Treatment 3 Epoch", + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Follow-up", + "label": "Follow-up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_5", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_23", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_24", + "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_27", + "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_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_28", + "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_29", + "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_30", + "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_31", + "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" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow up Element", + "transitionStartRule": { + "id": "TransitionRule_25", + "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_26", + "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" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand 1", + "label": "Estimand 1", + "description": "Estimand 1", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Disruption", + "label": "Disruption", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "strategy": "Treatment Policy. Continue to measure effect of treatment assignment regardless of interruption.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Indication 1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36968", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "Indication 2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36969", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "2018-01-31", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_1" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "Objective 1", + "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": [], + "level": { + "id": "Code_2508", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "ENDPT1", + "label": "Endpoint 1", + "description": "ADAS-Cog Week 24 Endpoint", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2514", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "ENDPT2", + "label": "Endpoint 2", + "description": "Clinician Week 24 impression of change", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2515", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "Objective 2", + "description": "Safety", + "text": "To document the safety profile of the xanomeline TTS.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2509", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "ENDPT3", + "label": "Endpoint 3", + "description": "Adverse events", + "text": "Adverse events", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2516", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "ENDPT4", + "label": "Endpoint 4", + "description": "Vital Signs", + "text": "Vital signs (weight, standing and supine blood pressure, heart rate)", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2517", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "ENDPT5", + "label": "Endpoint 5", + "description": "Baseline", + "text": "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": [], + "purpose": "", + "level": { + "id": "Code_2518", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "Objective 3", + "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": [], + "level": { + "id": "Code_2510", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "ENDPT6", + "label": "Endpoint 6", + "description": "Cognitive Scale", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2519", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "ENDPT7", + "label": "Endpoint 7", + "description": "Clinician impression at Week8 and Week16", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2520", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "ENDPT8", + "label": "Endpoint 8", + "description": "NPI-X", + "text": "Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2521", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "Objective 4", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2511", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "ENDPT9", + "label": "Endpoint 9", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2522", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "Objective 5", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2512", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "ENDPT10", + "label": "Endpoint 10", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2523", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "Objective 6", + "description": "Response", + "text": "To assess the treatment response as a function of Apo E genotype.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2513", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "ENDPT11", + "label": "Endpoint 11", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2524", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "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_1", + "exits": [], + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2W", + "valueLabel": "2 Weeks Before Dose", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2D", + "valueLabel": "2 Days Before Dose", + "relativeToFrom": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing Anchor", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_25", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_30", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_31", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_34", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_35", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 Timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 Timing", + "type": { + "id": "Code_38", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_39", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 Timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 Timing", + "type": { + "id": "Code_42", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_43", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_25", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 Timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_26", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 Home Timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 Home Timing", + "type": { + "id": "Code_48", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_49", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 Home Timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 Home Timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_23", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen 1", + "description": "Screen 1 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_2", + "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_11", + "Activity_14", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_27", + "Activity_31", + "Activity_32", + "Activity_30", + "Activity_33" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen 2", + "description": "Screen 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_15", + "Activity_33" + ], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "Dose Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_14", + "Activity_16", + "Activity_22", + "Activity_28", + "Activity_26", + "Activity_30", + "Activity_31", + "Activity_32", + "Activity_33" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Week 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_14", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_28", + "Activity_17", + "Activity_24", + "Activity_33" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Week 4 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Week 6 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Week 8 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "WEEK8N", + "label": "Week 8 NPI", + "description": "Week 8 NPI Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Week 12", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WEEK12N", + "label": "Week 12 NPI", + "description": "Week 12 NPI", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Week 16", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WEEK16N", + "label": "Week 16 NPI", + "description": "Week 16 NPI", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Week 20", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WEEK20N", + "label": "Week 20 NPI", + "description": "Week 20 NPI", + "defaultConditionId": "ScheduledActivityInstance_25", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_25", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Week 24", + "defaultConditionId": "ScheduledActivityInstance_26", + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_28", + "Activity_30", + "Activity_32", + "Activity_31" + ], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_26", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Week 26", + "defaultConditionId": null, + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_28", + "Activity_29" + ], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "testDecisionInstance", + "label": "testDecisionInstance", + "description": "testDecisionInstance", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "is not null", + "conditionTargetId": "ScheduledActivityInstance_3", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "test_2", + "label": "test_2", + "description": "test_2", + "defaultConditionId": "blahblahblah", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + }, + { + "id": "ScheduledDecisionInstance_3", + "extensionAttributes": [], + "name": "test3", + "label": "test3", + "description": "test3", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_6", + "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_11", + "exits": [], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event Timing", + "type": { + "id": "Code_105", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_106", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "AE", + "label": "Adverse Event", + "description": "Occurrence of Adverse Event", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_7", + "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_12", + "exits": [], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination Timing", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_108", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "Early Termination", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_8", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_13", + "exits": [], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "VS Supine", + "type": { + "id": "Code_109", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_111", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_112", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_114", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_115", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_117", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_118", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_119", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "VS 5 minute supine", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "VS Vital signs supine", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "VS 1 minute standing", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "VS Vital signs after 1 min standing", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "VS 2 minute standing", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "VS Vital signs after 3 min standing", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT - Pilot", + "type": { + "id": "Code_27557", + "extensionAttributes": [], + "code": "C207646", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_27601", + "extensionAttributes": [], + "code": "C207615", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_27813", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1" + ], + "dateValues": [], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "notes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "First amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_2525", + "extensionAttributes": [], + "code": "C207605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_2526", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "OTHER", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_2", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "Change 1", + "description": "Typographical errors lead to ambiguity when interpreting Inclusion Criteria", + "summary": "Fixed inclusion criteria text", + "rationale": "Subject safety", + "changedSections": [ + { + "id": "DocumentContentReference_2", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "notes": [], + "type": { + "id": "Code_2527", + "extensionAttributes": [], + "code": "C215665", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Enhance subject safety", + "isSubstantial": false, + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + }, + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "Enrollment 1", + "label": null, + "description": null, + "quantity": { + "id": "SubjectEnrollment_1_Qty", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "Protocol Approval", + "label": null, + "description": null, + "type": { + "id": "Code_13051", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "instanceType": "StudyAmendment" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "identifier": "00-642-1325", + "identifierScheme": "DUNS", + "type": { + "id": "Code_28637", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": [ + "Lilly Corporate Ctr" + ], + "city": "Indianapolis", + "district": null, + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_28638", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "identifier": "CT-GOV", + "identifierScheme": "USGOV", + "type": { + "id": "Code_28639", + "extensionAttributes": [], + "code": "C142578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Independent Data Monitoring Committee", + "instanceType": "Code" + }, + "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_28640", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "MLM Medical Labs", + "label": "Central Labu", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_39641", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_39642", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Role 1", + "label": "Sponsor", + "description": "Study Sponsor", + "code": { + "id": "Code_35642", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Laboratory Contact", + "label": "Lab Primary Contact", + "description": "The primary person to contact at the Central Lab", + "code": { + "id": "Code_40467", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_3" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "John Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "John" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "PhD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_36026", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_36027", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 1.0, + "unit": { + "id": "AliasCode_30645", + "extensionAttributes": [], + "standardCode": { + "id": "Code_36028", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_36144", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_126", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": null, + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3021", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_42410", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_37997", + "standardCode": { + "id": "Code_45284", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_37998", + "standardCode": { + "id": "Code_45285", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_37999", + "standardCode": { + "id": "Code_45286", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3361", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_127", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Inclusion Criteria", + "label": "Inclusion Criteria", + "synonyms": [ + "Inclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25532", + "properties": [ + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38000", + "standardCode": { + "id": "Code_45287", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38001", + "standardCode": { + "id": "Code_45288", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38002", + "standardCode": { + "id": "Code_45289", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24523", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "synonyms": [ + "Inclusion Exclusion Criteria Yes No Indicator", + "IEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83063", + "properties": [ + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38003", + "standardCode": { + "id": "Code_45290", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38004", + "standardCode": { + "id": "Code_45291", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31819", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38143", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exclusion Criteria", + "label": "Exclusion Criteria", + "synonyms": [ + "Exclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25370", + "properties": [ + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_2841", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_40605", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38005", + "standardCode": { + "id": "Code_45292", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38006", + "standardCode": { + "id": "Code_45293", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38007", + "standardCode": { + "id": "Code_45294", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3363", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": "Subject is Randomized", + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_125", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RACE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Race", + "label": "Race", + "synonyms": [ + "Racial Group" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17049", + "properties": [], + "code": { + "id": "AliasCode_31820", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38144", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ETHNIC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ethnic Group", + "label": "Ethnic Group", + "synonyms": [ + "Ethnicity", + "Ethnic Origin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16564", + "properties": [], + "code": { + "id": "AliasCode_31821", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38145", + "extensionAttributes": [], + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Ethnic Group", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject Age", + "label": "Subject Age", + "synonyms": [ + "Age" + ], + "reference": "/mdr/bc/biomedicalconcepts/C69260", + "properties": [], + "code": { + "id": "AliasCode_24524", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28642", + "extensionAttributes": [], + "code": "C69260", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Subject Age", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BRTHDTC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Birth Date and Time", + "label": "Birth Date and Time", + "synonyms": [ + "BRTHDTC", + "Date/Time of Birth" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83217", + "properties": [], + "code": { + "id": "AliasCode_3155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3365", + "extensionAttributes": [], + "code": "C83217", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Birth Date and Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SEX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sex", + "label": null, + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28421", + "properties": [], + "code": { + "id": "AliasCode_24525", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28643", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDULEVEL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Education Level", + "label": "Education Level", + "synonyms": [ + "EDULEVEL", + "Education Level Completed", + "Education" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17953", + "properties": [], + "code": { + "id": "AliasCode_24526", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28644", + "extensionAttributes": [], + "code": "C17953", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Education Level", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDUYRNUM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Number of Years of Education", + "label": "Number of Years of Education", + "synonyms": [ + "EDUYRNUM", + "Education" + ], + "reference": "/mdr/bc/biomedicalconcepts/C122393", + "properties": [], + "code": { + "id": "AliasCode_24527", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28645", + "extensionAttributes": [], + "code": "C122393", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Number of Years of Education", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_123", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MEDHISTFREE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_124", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHALZHEIMERS", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_128", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHVISUALHALLUCINATIONS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Medical History", + "label": "Solicited Medical History", + "synonyms": [ + "Medical History", + "Medical History Collection" + ], + "reference": "/mdr/bc/biomedicalconcepts/C200145", + "properties": [], + "code": { + "id": "AliasCode_3156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3366", + "extensionAttributes": [], + "code": "C200145", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Medical History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_134", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALCOHOLHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alcohol Use History", + "label": "Alcohol Use History", + "synonyms": [ + "Alcohol History", + "Alcohol Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81229", + "properties": [], + "code": { + "id": "AliasCode_24528", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28646", + "extensionAttributes": [], + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alcohol Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_135", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CAFFEINEHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Caffeine Use History", + "label": "Caffeine Use History", + "synonyms": [ + "Caffeine History", + "Caffeine Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C201990", + "properties": [], + "code": { + "id": "AliasCode_3157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3367", + "extensionAttributes": [], + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Caffeine Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_130", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_131", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARETTEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_132", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PIPEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_133", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TOBACCOHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "History of Tobacco Use", + "label": "History of Tobacco Use", + "synonyms": [ + "Tobacco Use", + "Tobacco Use History" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181760", + "properties": [], + "code": { + "id": "AliasCode_3158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3368", + "extensionAttributes": [], + "code": "C181760", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "History of Tobacco Use", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_136", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAY", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_137", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAYCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "X-Ray Imaging", + "label": "X-Ray Imaging", + "synonyms": [ + "Conventional X-Ray", + "Medical Imaging", + "X-Ray", + "Static X-Ray" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38101", + "properties": [], + "code": { + "id": "AliasCode_38008", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45295", + "extensionAttributes": [], + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "X-Ray Imaging", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_138", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": null, + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_145", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/TEMP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [], + "code": { + "id": "AliasCode_2640", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2850", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_146", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/WEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [], + "code": { + "id": "AliasCode_3161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3371", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_147", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/HEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Height", + "label": "Body Height", + "synonyms": [ + "HEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C164634", + "properties": [], + "code": { + "id": "AliasCode_24529", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28647", + "extensionAttributes": [], + "code": "C164634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PULSE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_148", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/PULSE_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pulse Rate", + "label": "Pulse Rate", + "synonyms": [ + "Pulse" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49676", + "properties": [], + "code": { + "id": "AliasCode_2664", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2874", + "extensionAttributes": [], + "code": "C49676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RESP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_149", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/RESP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Respiratory Rate", + "label": "Respiratory Rate", + "synonyms": [ + "RESP", + "RESPRATE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49678", + "properties": [], + "code": { + "id": "AliasCode_2680", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2890", + "extensionAttributes": [], + "code": "C49678", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BMI", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_150", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/BMI_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Mass Index", + "label": "Body Mass Index", + "synonyms": [ + "BMI", + "Quetelet Index" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16358", + "properties": [], + "code": { + "id": "AliasCode_24530", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28648", + "extensionAttributes": [], + "code": "C16358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Mass Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_151", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/DIABP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_152", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/packages/2026-06-30/specializations/SYSBP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Blood Pressure", + "label": "Blood Pressure", + "synonyms": [ + "BP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C54706", + "properties": [], + "code": { + "id": "AliasCode_3162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3372", + "extensionAttributes": [], + "code": "C54706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGINTP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Electrocardiogram Analysis", + "label": "Electrocardiogram Analysis", + "synonyms": [ + "ECG Analysis", + "EKG Analysis", + "Electrocardiogram Interpretation", + "ECG Interpretation", + "EKG Interpretation" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181655", + "properties": [], + "code": { + "id": "AliasCode_24531", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28649", + "extensionAttributes": [], + "code": "C181655", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Electrocardiogram Analysis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AVCOND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Atrioventricular Conduction ECG Assessment", + "label": "Atrioventricular Conduction ECG Assessment", + "synonyms": [ + "AVCOND", + "Atrioventricular Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111131", + "properties": [], + "code": { + "id": "AliasCode_24532", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28650", + "extensionAttributes": [], + "code": "C111131", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Atrioventricular Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AXISVOLT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Axis and Voltage ECG Assessment", + "label": "Axis and Voltage ECG Assessment", + "synonyms": [ + "AXISVOLT", + "Axis and Voltage" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111132", + "properties": [], + "code": { + "id": "AliasCode_24533", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28651", + "extensionAttributes": [], + "code": "C111132", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Axis and Voltage ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHYPTENL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chamber Hypertrophy or Enlargement ECG Assessment", + "label": "Chamber Hypertrophy or Enlargement ECG Assessment", + "synonyms": [ + "CHYPTENL", + "Chamber Hypertrophy or Enlargement" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111155", + "properties": [], + "code": { + "id": "AliasCode_24534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28652", + "extensionAttributes": [], + "code": "C111155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Chamber Hypertrophy or Enlargement ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TECHQUAL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Technical Quality", + "label": "ECG Technical Quality", + "synonyms": [ + "TECHQUAL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117807", + "properties": [], + "code": { + "id": "AliasCode_24535", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28653", + "extensionAttributes": [], + "code": "C117807", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "ECG Technical Quality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/IVTIACD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Intraventricular and Intraatrial Conduction ECG Assessment", + "label": "Intraventricular and Intraatrial Conduction ECG Assessment", + "synonyms": [ + "IVTIACD", + "Intraventricular-Intraatrial Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111238", + "properties": [], + "code": { + "id": "AliasCode_24536", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28654", + "extensionAttributes": [], + "code": "C111238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Intraventricular and Intraatrial Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_33", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MI", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Myocardial Infarction ECG Assessment", + "label": "Myocardial Infarction ECG Assessment", + "synonyms": [ + "MI", + "Myocardial Infarction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111280", + "properties": [], + "code": { + "id": "AliasCode_24537", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28655", + "extensionAttributes": [], + "code": "C111280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Myocardial Infarction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_34", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PACEMAKR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pacemaker ECG Assessment", + "label": "Pacemaker ECG Assessment", + "synonyms": [ + "PACEMAKR", + "Pacemaker" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111285", + "properties": [], + "code": { + "id": "AliasCode_24538", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28656", + "extensionAttributes": [], + "code": "C111285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Pacemaker ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_35", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RHYNOS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Rhythm Not Otherwise Specified ECG Assessment", + "label": "Rhythm Not Otherwise Specified ECG Assessment", + "synonyms": [ + "RHYNOS", + "Rhythm Not Otherwise Specified" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111307", + "properties": [], + "code": { + "id": "AliasCode_24539", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28657", + "extensionAttributes": [], + "code": "C111307", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Rhythm Not Otherwise Specified ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_36", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/STSTWUW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ST Segment, T wave, and U wave ECG Assessment", + "label": "ST Segment, T wave, and U wave ECG Assessment", + "synonyms": [ + "STSTWUW", + "ST Segment, T wave, and U wave" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111363", + "properties": [], + "code": { + "id": "AliasCode_24540", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28658", + "extensionAttributes": [], + "code": "C111363", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "ST Segment, T wave, and U wave ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_37", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SNRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "label": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "synonyms": [ + "SNRARRY", + "Sinus Node Rhythms and Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111312", + "properties": [], + "code": { + "id": "AliasCode_24541", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28659", + "extensionAttributes": [], + "code": "C111312", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_38", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Arrhythmia ECG Assessment", + "label": "Supraventricular Arrhythmia ECG Assessment", + "synonyms": [ + "SPRARRY", + "Supraventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111320", + "properties": [], + "code": { + "id": "AliasCode_24542", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28660", + "extensionAttributes": [], + "code": "C111320", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_39", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Tachyarrhythmia ECG Assessment", + "label": "Supraventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "SPRTARRY", + "Supraventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111321", + "properties": [], + "code": { + "id": "AliasCode_24543", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28661", + "extensionAttributes": [], + "code": "C111321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_40", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate PR Interval", + "label": "Aggregate PR Interval", + "synonyms": [ + "PR Interval Aggregate", + "PQ Interval Aggregate", + "PRAG", + "PQAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117773", + "properties": [], + "code": { + "id": "AliasCode_24544", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28662", + "extensionAttributes": [], + "code": "C117773", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate PR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_41", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QRS Duration", + "label": "Aggregate QRS Duration", + "synonyms": [ + "QRS Aggregate Duration", + "QRSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117779", + "properties": [], + "code": { + "id": "AliasCode_24545", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28663", + "extensionAttributes": [], + "code": "C117779", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QRS Duration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_42", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QT Interval", + "label": "Aggregate QT Interval", + "synonyms": [ + "QT Interval Aggregate", + "QTAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117783", + "properties": [], + "code": { + "id": "AliasCode_24546", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28664", + "extensionAttributes": [], + "code": "C117783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QT Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_43", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCBAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCB Interval", + "label": "Aggregate QTCB Interval", + "synonyms": [ + "QTCB Interval Aggregate", + "QTCBAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117784", + "properties": [], + "code": { + "id": "AliasCode_24547", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28665", + "extensionAttributes": [], + "code": "C117784", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCB Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_44", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCFAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCF Interval", + "label": "Aggregate QTCF Interval", + "synonyms": [ + "QTCF Interval Aggregate", + "QTCFAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117786", + "properties": [], + "code": { + "id": "AliasCode_24548", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28666", + "extensionAttributes": [], + "code": "C117786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCF Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_45", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate RR Interval", + "label": "Aggregate RR Interval", + "synonyms": [ + "RR Interval Aggregate", + "RRAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117791", + "properties": [], + "code": { + "id": "AliasCode_24549", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28667", + "extensionAttributes": [], + "code": "C117791", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Aggregate RR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_46", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGHRMN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Mean Heart Rate by Electrocardiogram", + "label": "Mean Heart Rate by Electrocardiogram", + "synonyms": [ + "ECG Mean Heart Rate", + "EKG Mean Heart Rate", + "EGHRMN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119259", + "properties": [], + "code": { + "id": "AliasCode_24550", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28668", + "extensionAttributes": [], + "code": "C119259", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Mean Heart Rate by Electrocardiogram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRS_AXIS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QRS Axis", + "label": "QRS Axis", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C118165", + "properties": [], + "code": { + "id": "AliasCode_24551", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28669", + "extensionAttributes": [], + "code": "C118165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QRS Axis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCUNSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QTc Correction Method Unspecified, Aggregate", + "label": "QTc Correction Method Unspecified, Aggregate", + "synonyms": [ + "QTCUNSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174285", + "properties": [], + "code": { + "id": "AliasCode_24552", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28670", + "extensionAttributes": [], + "code": "C174285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QTc Correction Method Unspecified, Aggregate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Arrhythmia ECG Assessment", + "label": "Ventricular Arrhythmia ECG Assessment", + "synonyms": [ + "VTARRY", + "Ventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111330", + "properties": [], + "code": { + "id": "AliasCode_24553", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28671", + "extensionAttributes": [], + "code": "C111330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Tachyarrhythmia ECG Assessment", + "label": "Ventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "VTTARRY", + "Ventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111331", + "properties": [], + "code": { + "id": "AliasCode_24554", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28672", + "extensionAttributes": [], + "code": "C111331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCANCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [], + "code": { + "id": "AliasCode_24555", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28673", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [], + "code": { + "id": "AliasCode_24556", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28674", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin Measurement", + "label": "Hemoglobin Measurement", + "synonyms": [ + "Hemoglobin", + "HGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64848", + "properties": [], + "code": { + "id": "AliasCode_24557", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28675", + "extensionAttributes": [], + "code": "C64848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HCTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hematocrit Measurement", + "label": "Hematocrit Measurement", + "synonyms": [ + "Hematocrit", + "Packed Cell Volume", + "PCV", + "Erythrocyte Volume Fraction", + "EVF" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64796", + "properties": [], + "code": { + "id": "AliasCode_24558", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28676", + "extensionAttributes": [], + "code": "C64796", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hematocrit Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [], + "code": { + "id": "AliasCode_24559", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28677", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCH", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Hemoglobin", + "label": "Erythrocyte Mean Corpuscular Hemoglobin", + "synonyms": [ + "RBC Mean Corpuscular Hemoglobin", + "MCH" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64797", + "properties": [], + "code": { + "id": "AliasCode_24560", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28678", + "extensionAttributes": [], + "code": "C64797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Hemoglobin", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_46", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Volume", + "label": "Erythrocyte Mean Corpuscular Volume", + "synonyms": [ + "RBC Mean Corpuscular Volume", + "MCV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64799", + "properties": [], + "code": { + "id": "AliasCode_24561", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28679", + "extensionAttributes": [], + "code": "C64799", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Volume", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_47", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [], + "code": { + "id": "AliasCode_24562", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28680", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_48", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTSGBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Segmented Neutrophil Count", + "label": "Segmented Neutrophil Count", + "synonyms": [ + "Segmented Neutrophils", + "NEUTSG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81997", + "properties": [], + "code": { + "id": "AliasCode_24563", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28681", + "extensionAttributes": [], + "code": "C81997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Segmented Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_49", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Neutrophil Band Form Count", + "label": "Neutrophil Band Form Count", + "synonyms": [ + "Neutrophil Bands", + "Bands", + "NEUTB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64830", + "properties": [], + "code": { + "id": "AliasCode_24564", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28682", + "extensionAttributes": [], + "code": "C64830", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Neutrophil Band Form Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_50", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Neutrophil Count", + "label": "Absolute Neutrophil Count", + "synonyms": [ + "Neutrophils", + "Total Neutrophil Count", + "NEUT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C63321", + "properties": [], + "code": { + "id": "AliasCode_24565", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28683", + "extensionAttributes": [], + "code": "C63321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_51", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MONOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Monocyte Count", + "label": "Monocyte Count", + "synonyms": [ + "Monocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64823", + "properties": [], + "code": { + "id": "AliasCode_24566", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28684", + "extensionAttributes": [], + "code": "C64823", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Monocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_52", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EOSBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eosinophil Count", + "label": "Eosinophil Count", + "synonyms": [ + "Eosinophils" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64550", + "properties": [], + "code": { + "id": "AliasCode_24567", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28685", + "extensionAttributes": [], + "code": "C64550", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Eosinophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_53", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BASOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Basophil Count", + "label": "Absolute Basophil Count", + "synonyms": [ + "Basophils", + "Total Basophil Count" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64470", + "properties": [], + "code": { + "id": "AliasCode_3354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3564", + "extensionAttributes": [], + "code": "C64470", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Basophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_54", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [], + "code": { + "id": "AliasCode_24568", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28686", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_55", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MICROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Microcyte Count", + "label": "Microcyte Count", + "synonyms": [ + "Microcytes", + "MICROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64822", + "properties": [], + "code": { + "id": "AliasCode_24569", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28687", + "extensionAttributes": [], + "code": "C64822", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Microcyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_56", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MACROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Macrocyte Count", + "label": "Macrocyte Count", + "synonyms": [ + "Macrocytes", + "MACROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64821", + "properties": [], + "code": { + "id": "AliasCode_24570", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28688", + "extensionAttributes": [], + "code": "C64821", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Macrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_57", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ANISOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Anisocyte Measurement", + "label": "Anisocyte Measurement", + "synonyms": [ + "Anisocytes", + "Anisocytosis", + "ANISO" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74797", + "properties": [], + "code": { + "id": "AliasCode_24571", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28689", + "extensionAttributes": [], + "code": "C74797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anisocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_58", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POIKILOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Poikilocyte Measurement", + "label": "Poikilocyte Measurement", + "synonyms": [ + "POIKILO", + "Poikilocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C79602", + "properties": [], + "code": { + "id": "AliasCode_24572", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28690", + "extensionAttributes": [], + "code": "C79602", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Poikilocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_59", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POLYCHRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Polychromasia", + "label": "Polychromasia", + "synonyms": [ + "POLYCHR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64803", + "properties": [], + "code": { + "id": "AliasCode_24573", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28691", + "extensionAttributes": [], + "code": "C64803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Polychromasia", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_60", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [], + "code": { + "id": "AliasCode_24574", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28692", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_61", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [], + "code": { + "id": "AliasCode_24575", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28693", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_62", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [], + "code": { + "id": "AliasCode_24576", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28694", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_63", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [], + "code": { + "id": "AliasCode_24577", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28695", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_78", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_64", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [], + "code": { + "id": "AliasCode_3355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3565", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_79", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_65", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [], + "code": { + "id": "AliasCode_24578", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28696", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_80", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_66", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [], + "code": { + "id": "AliasCode_24579", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28697", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_81", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_67", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [], + "code": { + "id": "AliasCode_24580", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28698", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_82", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_68", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BICARBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Bicarbonate Measurement", + "label": "Bicarbonate Measurement", + "synonyms": [ + "Bicarbonate", + "HCO3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74667", + "properties": [], + "code": { + "id": "AliasCode_24581", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28699", + "extensionAttributes": [], + "code": "C74667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Bicarbonate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_83", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_69", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [], + "code": { + "id": "AliasCode_24582", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28700", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_84", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_70", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_85", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_71", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GGTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Gamma Glutamyl Transpeptidase Measurement", + "label": "Gamma Glutamyl Transpeptidase Measurement", + "synonyms": [ + "Gamma Glutamyl Transferase", + "GGT", + "GGTP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64847", + "properties": [], + "code": { + "id": "AliasCode_37996", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45283", + "extensionAttributes": [], + "code": "C64847", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Gamma Glutamyl Transpeptidase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_86", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_72", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [], + "code": { + "id": "AliasCode_24584", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28702", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_87", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_73", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHOSSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Phosphate Measurement", + "label": "Phosphate Measurement", + "synonyms": [ + "Phosphorus", + "Phosphate" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64857", + "properties": [], + "code": { + "id": "AliasCode_24585", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28703", + "extensionAttributes": [], + "code": "C64857", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Phosphate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_88", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_74", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [], + "code": { + "id": "AliasCode_24586", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28704", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_89", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_75", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_90", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_76", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_91", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_77", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [], + "code": { + "id": "AliasCode_24589", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28707", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_92", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_78", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3UPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Uptake Measurement", + "label": "Triiodothyronine Uptake Measurement", + "synonyms": [ + "T3UP", + "T3U", + "Triiodothyronine Resin Uptake" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74748", + "properties": [], + "code": { + "id": "AliasCode_24590", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28708", + "extensionAttributes": [], + "code": "C74748", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Uptake Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_93", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_79", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3SERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Measurement", + "label": "Triiodothyronine Measurement", + "synonyms": [ + "T3", + "Total T3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74747", + "properties": [], + "code": { + "id": "AliasCode_24591", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28709", + "extensionAttributes": [], + "code": "C74747", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_94", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_80", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Measurement", + "label": "Free Thyroxine Measurement", + "synonyms": [ + "Free T4", + "T4FR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74786", + "properties": [], + "code": { + "id": "AliasCode_24592", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28710", + "extensionAttributes": [], + "code": "C74786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_95", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_81", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRIDXSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Index", + "label": "Free Thyroxine Index", + "synonyms": [ + "T4FRIDX" + ], + "reference": "/mdr/bc/biomedicalconcepts/C170598", + "properties": [], + "code": { + "id": "AliasCode_24593", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28711", + "extensionAttributes": [], + "code": "C170598", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_96", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_82", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TSHBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Thyrotropin Measurement", + "label": "Thyrotropin Measurement", + "synonyms": [ + "TSH", + "Thyrotropin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64813", + "properties": [], + "code": { + "id": "AliasCode_24594", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28712", + "extensionAttributes": [], + "code": "C64813", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Thyrotropin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_97", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_83", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB9BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Folic Acid Measurement", + "label": "Folic Acid Measurement", + "synonyms": [ + "Folate", + "Folic Acid", + "Vitamin B9", + "VITB9" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74676", + "properties": [], + "code": { + "id": "AliasCode_3218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3428", + "extensionAttributes": [], + "code": "C74676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Folic Acid Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_98", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_84", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB12BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Vitamin B12 Measurement", + "label": "Vitamin B12 Measurement", + "synonyms": [ + "Cobalamin", + "Vitamin B12", + "VITB12" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64817", + "properties": [], + "code": { + "id": "AliasCode_24595", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28713", + "extensionAttributes": [], + "code": "C64817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Vitamin B12 Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_99", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_85", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPLAB", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum Antibody Measurement", + "label": "Treponema pallidum Antibody Measurement", + "synonyms": [ + "TPLAB", + "Treponema pallidum Antibody", + "Syphilis Antibody" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132388", + "properties": [], + "code": { + "id": "AliasCode_24596", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28714", + "extensionAttributes": [], + "code": "C132388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum Antibody Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_100", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_86", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPADNA", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum DNA Measurement", + "label": "Treponema pallidum DNA Measurement", + "synonyms": [ + "TPADNA", + "Syphilis DNA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C198341", + "properties": [], + "code": { + "id": "AliasCode_24597", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28715", + "extensionAttributes": [], + "code": "C198341", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum DNA Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_101", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_87", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [], + "code": { + "id": "AliasCode_24598", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28716", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_102", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_88", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [], + "code": { + "id": "AliasCode_3219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3429", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_103", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_89", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": null, + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_104", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_144", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": null, + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_105", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_91", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KETONESURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ketone Measurement", + "label": "Ketone Measurement", + "synonyms": [ + "Ketones" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64854", + "properties": [], + "code": { + "id": "AliasCode_24599", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28717", + "extensionAttributes": [], + "code": "C64854", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Ketone Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_106", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_92", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": null, + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_107", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_93", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UROBILURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urobilinogen Measurement", + "label": "Urobilinogen Measurement", + "synonyms": [ + "Urobilinogen", + "UROBIL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64816", + "properties": [], + "code": { + "id": "AliasCode_24600", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28718", + "extensionAttributes": [], + "code": "C64816", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urobilinogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_108", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_94", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OCCBLDSTOOL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Occult Blood Measurement", + "label": "Occult Blood Measurement", + "synonyms": [ + "Occult Blood", + "OCCBLD" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74686", + "properties": [], + "code": { + "id": "AliasCode_3356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3566", + "extensionAttributes": [], + "code": "C74686", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occult Blood Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_109", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_95", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NITRITEURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Nitrite Measurement", + "label": "Nitrite Measurement", + "synonyms": [ + "NITRITE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64810", + "properties": [], + "code": { + "id": "AliasCode_3357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3567", + "extensionAttributes": [], + "code": "C64810", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Nitrite Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_110", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_96", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C Measurement", + "label": "Hemoglobin A1C Measurement", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64849", + "properties": [], + "code": { + "id": "AliasCode_24601", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28719", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin A1C Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_111", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_97", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CHGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "label": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "synonyms": [ + "Hemoglobin A1C/Hemoglobin", + "HBA1CHGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111207", + "properties": [], + "code": { + "id": "AliasCode_24602", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28720", + "extensionAttributes": [], + "code": "C111207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_112", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_98", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXPOSCOLL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exposure as Collected Domain", + "label": "Exposure as Collected Domain", + "synonyms": [ + "EC", + "Exposure as Collected" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117466", + "properties": [], + "code": { + "id": "AliasCode_24603", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28721", + "extensionAttributes": [], + "code": "C117466", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-10-03", + "decode": "Exposure as Collected Domain", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_113", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_114", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_99", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYACCEPTABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Acceptability", + "label": "TTS Acceptability Survey - Patch Acceptability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT4", + "properties": [], + "code": { + "id": "AliasCode_24605", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28723", + "extensionAttributes": [], + "code": "NEW_LZZT4", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Acceptability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_115", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_100", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYAPPEARANCE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Appearance", + "label": "TTS Acceptability Survey - Patch Appearance", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT1", + "properties": [], + "code": { + "id": "AliasCode_24606", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28724", + "extensionAttributes": [], + "code": "NEW_LZZT1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Appearance", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_116", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_101", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYDURABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Durability", + "label": "TTS Acceptability Survey - Patch Durability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT3", + "properties": [], + "code": { + "id": "AliasCode_24607", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28725", + "extensionAttributes": [], + "code": "NEW_LZZT3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Durability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_117", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_102", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYSIZE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Size", + "label": "TTS Acceptability Survey - Patch Size", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT2", + "properties": [], + "code": { + "id": "AliasCode_24608", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28726", + "extensionAttributes": [], + "code": "NEW_LZZT2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Size", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_134", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_135", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_103", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Adverse Event", + "label": "Solicited Adverse Event", + "synonyms": [ + "Adverse Event" + ], + "reference": "/mdr/bc/biomedicalconcepts/C179175", + "properties": [], + "code": { + "id": "AliasCode_24610", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28728", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_136", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_104", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTCOMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Complete", + "label": "Complete", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C25250", + "properties": [], + "code": { + "id": "AliasCode_24611", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28729", + "extensionAttributes": [], + "code": "C25250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Complete [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_137", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_105", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/FAILCONT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Failure To Meet Continuation Criteria", + "label": "Failure To Meet Continuation Criteria", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C139236", + "properties": [], + "code": { + "id": "AliasCode_24612", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28730", + "extensionAttributes": [], + "code": "C139236", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Failure To Meet Continuation Criteria [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_138", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_106", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DEAD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Dead", + "label": "Dead", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28554", + "properties": [], + "code": { + "id": "AliasCode_24613", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28731", + "extensionAttributes": [], + "code": "C28554", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Dead [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_139", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_107", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LACKEFFICACY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lack of Efficacy", + "label": "Lack of Efficacy", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48226", + "properties": [], + "code": { + "id": "AliasCode_24614", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28732", + "extensionAttributes": [], + "code": "C48226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lack of Efficacy [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_140", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_108", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LTFUP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lost To Follow-Up", + "label": "Lost To Follow-Up", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48227", + "properties": [], + "code": { + "id": "AliasCode_24615", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28733", + "extensionAttributes": [], + "code": "C48227", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lost To Follow-Up [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_141", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_109", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_142", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_110", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHYDECISION", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Physician Decision", + "label": "Physician Decision", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48250", + "properties": [], + "code": { + "id": "AliasCode_24617", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28735", + "extensionAttributes": [], + "code": "C48250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Physician Decision [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_143", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_111", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJPREG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pregnant Subject", + "label": "Pregnant Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C191656", + "properties": [], + "code": { + "id": "AliasCode_24618", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28736", + "extensionAttributes": [], + "code": "C191656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Pregnant Subject [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_144", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_112", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROGDISEASE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Progressive Disease", + "label": "Progressive Disease", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C35571", + "properties": [], + "code": { + "id": "AliasCode_24619", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28737", + "extensionAttributes": [], + "code": "C35571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Progressive Disease [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_145", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_113", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTDEV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Protocol Deviation", + "label": "Protocol Deviation", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C50996", + "properties": [], + "code": { + "id": "AliasCode_1747", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1937", + "extensionAttributes": [], + "code": "C50996", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Protocol Deviation", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_146", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_114", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SITETRANSFER", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Study Site Transfer", + "label": "Study Site Transfer", + "synonyms": [ + "Site Transfer", + "Study Subject Site Transfer" + ], + "reference": "/mdr/bc/biomedicalconcepts/C186208", + "properties": [], + "code": { + "id": "AliasCode_1753", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1943", + "extensionAttributes": [], + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Site Transfer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_147", + "extensionAttributes": [], + "name": "Study Terminated By Sponsor", + "label": "Study Terminated By Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49632", + "properties": [], + "code": { + "id": "AliasCode_1758", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1948", + "extensionAttributes": [], + "code": "C49632", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Terminated By Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_148", + "extensionAttributes": [], + "name": "Subject Removed at Sponsor Request", + "label": "Subject Removed at Sponsor Request", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C161410", + "properties": [], + "code": { + "id": "AliasCode_29205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_33323", + "extensionAttributes": [], + "code": "C161410", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Subject Removed at Sponsor Request [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_149", + "extensionAttributes": [], + "name": "Trial Screen Failure", + "label": "Trial Screen Failure", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49628", + "properties": [], + "code": { + "id": "AliasCode_1760", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1950", + "extensionAttributes": [], + "code": "C49628", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Screen Failure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_150", + "extensionAttributes": [], + "name": "Trial Site Terminated by Sponsor", + "label": "Trial Site Terminated by Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106576", + "properties": [], + "code": { + "id": "AliasCode_1761", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1951", + "extensionAttributes": [], + "code": "C106576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Site Terminated by Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_151", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_115", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJWITHDRAW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal by Subject", + "label": "Withdrawal by Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49634", + "properties": [], + "code": { + "id": "AliasCode_1762", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1952", + "extensionAttributes": [], + "code": "C49634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal by Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_152", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_116", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSWDRL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal of Consent From Protocol-Specified Activity", + "label": "Withdrawal of Consent From Protocol-Specified Activity", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C170610", + "properties": [], + "code": { + "id": "AliasCode_38009", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45296", + "extensionAttributes": [], + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal of Consent From Protocol-Specified Activity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_153", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_117", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_154", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_118", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_155", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_119", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_156", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_120", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_157", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_121", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_158", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_122", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_159", + "extensionAttributes": [], + "name": "Isometric Muscle Strength", + "label": "Isometric Muscle Strength", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C138967", + "properties": [], + "code": { + "id": "AliasCode_2312", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2502", + "extensionAttributes": [], + "code": "C138967", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Isometric Muscle Strength", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_160", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_129", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SMMASS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Skeletal Muscle Mass Measurement", + "label": "Skeletal Muscle Mass Measurement", + "synonyms": [ + "SMMASS", + "Skeletal Muscle Mass" + ], + "reference": "/mdr/bc/biomedicalconcepts/C178017", + "properties": [], + "code": { + "id": "AliasCode_2313", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2503", + "extensionAttributes": [], + "code": "C178017", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Skeletal Muscle Mass Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_161", + "extensionAttributes": [], + "name": "Muscle Endurance Measurement", + "label": "Muscle Endurance Measurement", + "synonyms": [ + "ENDURM", + "Muscle Endurance" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181501", + "properties": [], + "code": { + "id": "AliasCode_24620", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28738", + "extensionAttributes": [], + "code": "C181501", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Muscle Endurance Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_162", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_139", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_164", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_165", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_141", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_166", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_142", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCAN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_168", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_169", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_170", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_143", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_171", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_172", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recall Average Score", + "label": "CDISC ADAS-Cog - Word Recall Average Score", + "synonyms": [ + "ADCRL", + "Word Recall", + "CDISC ADAS-Cog - Word Recall Average Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100177", + "properties": [], + "code": { + "id": "AliasCode_24622", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28740", + "extensionAttributes": [], + "code": "C100177", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recall Average Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_173", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "label": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "synonyms": [ + "ADCOF", + "Naming Objects and Fingers", + "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100191", + "properties": [], + "code": { + "id": "AliasCode_27242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31360", + "extensionAttributes": [], + "code": "C100191", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_174", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Commands Summary Score", + "label": "CDISC ADAS-Cog - Commands Summary Score", + "synonyms": [ + "ADCCMD", + "Commands", + "CDISC ADAS-Cog - Commands Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100209", + "properties": [], + "code": { + "id": "AliasCode_24623", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28741", + "extensionAttributes": [], + "code": "C100209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Commands Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_175", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "label": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "synonyms": [ + "ADCDRL", + "Delayed Word Recall", + "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100215", + "properties": [], + "code": { + "id": "AliasCode_27243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31361", + "extensionAttributes": [], + "code": "C100215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_176", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "label": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "synonyms": [ + "ADCCP", + "Constructional Praxis", + "CDISC ADAS-Cog - Constructional Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100226", + "properties": [], + "code": { + "id": "AliasCode_27244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31362", + "extensionAttributes": [], + "code": "C100226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_177", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "label": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "synonyms": [ + "ADCIP", + "Ideational Praxis", + "CDISC ADAS-Cog - Ideational Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100232", + "properties": [], + "code": { + "id": "AliasCode_24624", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28742", + "extensionAttributes": [], + "code": "C100232", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_178", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Orientation Summary Score", + "label": "CDISC ADAS-Cog - Orientation Summary Score", + "synonyms": [ + "ADCOR", + "Orientation", + "CDISC ADAS-Cog - Orientation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100238", + "properties": [], + "code": { + "id": "AliasCode_27245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31363", + "extensionAttributes": [], + "code": "C100238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Orientation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_179", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recognition Summary Score", + "label": "CDISC ADAS-Cog - Word Recognition Summary Score", + "synonyms": [ + "ADCRG", + "Word Recognition", + "CDISC ADAS-Cog - Word Recognition Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100247", + "properties": [], + "code": { + "id": "AliasCode_24625", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28743", + "extensionAttributes": [], + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_180", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Remembering Test Instructions", + "label": "CDISC ADAS-Cog - Remembering Test Instructions", + "synonyms": [ + "ADCRI", + "Remembering Test Instructions", + "CDISC ADAS-Cog - Remembering Test Instructions" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100275", + "properties": [], + "code": { + "id": "AliasCode_24626", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28744", + "extensionAttributes": [], + "code": "C100275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Remembering Test Instructions", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_181", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Spoken Language Ability", + "label": "CDISC ADAS-Cog - Spoken Language Ability", + "synonyms": [ + "ADCSL", + "Spoken Language Ability", + "CDISC ADAS-Cog - Spoken Language Ability" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100276", + "properties": [], + "code": { + "id": "AliasCode_24627", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28745", + "extensionAttributes": [], + "code": "C100276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Spoken Language Ability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_182", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "label": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "synonyms": [ + "ADCDIF", + "Word Finding Difficulty in Spont Speech", + "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100277", + "properties": [], + "code": { + "id": "AliasCode_24628", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28746", + "extensionAttributes": [], + "code": "C100277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_183", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Comprehension", + "label": "CDISC ADAS-Cog - Comprehension", + "synonyms": [ + "ADCCMP", + "Comprehension", + "CDISC ADAS-Cog - Comprehension" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100278", + "properties": [], + "code": { + "id": "AliasCode_24629", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28747", + "extensionAttributes": [], + "code": "C100278", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Comprehension", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_184", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Concentration/Distractibility", + "label": "CDISC ADAS-Cog - Concentration/Distractibility", + "synonyms": [ + "ADCCON", + "Concentration/Distractibility", + "CDISC ADAS-Cog - Concentration/Distractibility" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100279", + "properties": [], + "code": { + "id": "AliasCode_24630", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28748", + "extensionAttributes": [], + "code": "C100279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Concentration/Distractibility", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_185", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "label": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "synonyms": [ + "ADCNC", + "Number Cancellation", + "CDISC ADAS-Cog - Number Cancellation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100280", + "properties": [], + "code": { + "id": "AliasCode_24631", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28749", + "extensionAttributes": [], + "code": "C100280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_186", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "label": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "synonyms": [ + "ADCMZ01", + "Executive Function Maze: Errors", + "CDISC ADAS-Cog - Executive Function Maze: Errors" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100285", + "properties": [], + "code": { + "id": "AliasCode_24632", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28750", + "extensionAttributes": [], + "code": "C100285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_187", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Time", + "label": "CDISC ADAS-Cog - Executive Function Maze: Time", + "synonyms": [ + "ADCMZ02", + "Executive Function Maze: Time", + "CDISC ADAS-Cog - Executive Function Maze: Time" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100286", + "properties": [], + "code": { + "id": "AliasCode_24633", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28751", + "extensionAttributes": [], + "code": "C100286", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_163", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_140", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_9", + "extensionAttributes": [], + "name": "MHIS-NACC / MHIS01", + "label": "Modified Hachinski Ischemic Scale (C112523)", + "description": "Modified Hachinski Ischemic Scale-NACC Version Questionnaire", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112523", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_10", + "extensionAttributes": [], + "name": "MHIS0101", + "label": "Abrupt Onset (C112618)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Abrupt onset (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112618", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_11", + "extensionAttributes": [], + "name": "MHIS0102", + "label": "Stepwise Deterioration (C112619)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Stepwise deterioration (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112619", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_12", + "extensionAttributes": [], + "name": "MHIS0103", + "label": "Emotional Incontinence (C112620)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Emotional incontinence.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112620", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_13", + "extensionAttributes": [], + "name": "MHIS0104", + "label": "History or Presence of Hypertension (C112621)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History or presence of hypertension.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112621", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_14", + "extensionAttributes": [], + "name": "MHIS0105", + "label": "History of Stroke (C112622)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History of stroke.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112622", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_15", + "extensionAttributes": [], + "name": "MHIS0106", + "label": "Focal Neurological Symptoms (C112623)", + "description": "MHIS-NACC - Focal Neurological Symptoms", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_16", + "extensionAttributes": [], + "name": "MHIS0107", + "label": "Focal Neurological Signs (C112624)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Focal neurological signs.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_17", + "extensionAttributes": [], + "name": "MHIS0108", + "label": "Somatic Complaints (C112813)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Somatic complaints.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112813", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_18", + "extensionAttributes": [], + "name": "MHIS0109", + "label": "Total Score (C112625)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Sum all circled answers for a total score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "APOE Gene", + "label": "APOE Gene (C84468)", + "description": "This gene is involved in lipid transport and metabolism.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C84468", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Mini-Mental Status Exam", + "label": "Mini-Mental Status Exam (C74982)", + "description": "Mini-Mental State Examination (MMSE) (MMSE Copyright 1975, 1998, 2001 by MiniMental, LLC All rights reserved. Published 2001 by Psychological Assessment Resources, Inc. May not be reproduced in whole or in part in any form or by any means without written permission of Psychological Assessment Resources, Inc.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C74982", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "MMSE - Question 1", + "label": "MMSE - Question 1 (C100542)", + "description": "The Mini-Mental State Examination (MMSE) Question 1.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100542", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "MMSE - Question 2", + "label": "MMSE - Question 2 (C100548)", + "description": "The Mini-Mental State Examination (MMSE) Question 2.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100548", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "MMSE - Question 3", + "label": "MMSE - Question 3 (C100554)", + "description": "The Mini-Mental State Examination (MMSE) Question 3.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100554", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "MMSE - Question 4", + "label": "MMSE - Question 4 (C100558)", + "description": "The Mini-Mental State Examination (MMSE) Question 4.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100558", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_25", + "extensionAttributes": [], + "name": "MMSE - Question 6", + "label": "MMSE - Question 6 (C100575)", + "description": "The Mini-Mental State Examination (MMSE) Question 6.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100575", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_26", + "extensionAttributes": [], + "name": "MMSE Functional Test Question", + "label": "MMSE Functional Test Question (C100118)", + "description": "A question associated with the MMSE functional test.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100118", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_27", + "extensionAttributes": [], + "name": "ADCS-CGIC", + "label": "ADCS-CGIC Questionnaire Question (C103490)", + "description": "A question associated with the ADCS-CGIC questionnaire.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_28", + "extensionAttributes": [], + "name": "DAD", + "label": "Disability Assessment for Dementia Questionnaire (C105165)", + "description": "Disability Assessment for Dementia (DAD) (copyright 1994 by L. Gauthier I. Gelinas. All rights reserved.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C105165", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_29", + "extensionAttributes": [], + "name": "NPI - NPI Total Distress Score", + "label": "NPI - NPI Total Distress Score (C112482)", + "description": "Neuropsychiatric Inventory - Sub-total of distress score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112482", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_30", + "extensionAttributes": [], + "name": "NPI - Anxiety Severity", + "label": "NPI - Anxiety Severity (C103615)", + "description": "Neuropsychiatric Inventory - Severity of the anxiety.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103615", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_31", + "extensionAttributes": [], + "name": "NPI - Disinhibition Frequency", + "label": "NPI - Disinhibition Frequency (C103623)", + "description": "Neuropsychiatric Inventory - Frequency of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_32", + "extensionAttributes": [], + "name": "NPI - Disinhibition Severity", + "label": "NPI - Disinhibition Severity (C103624)", + "description": "Neuropsychiatric Inventory - Severity of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_33", + "extensionAttributes": [], + "name": "NPI - Disinhibition Distress", + "label": "NPI - Disinhibition Distress (C103625)", + "description": "Neuropsychiatric Inventory - How emotionally distressing do you find this behavior?", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_34", + "extensionAttributes": [], + "name": "NPI - Disinhibition FxS Score", + "label": "NPI - Disinhibition FxS Score (C112476)", + "description": "Neuropsychiatric Inventory - Disinhibition: (frequency score x severity score).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112476", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "

See section 1 Introduction.

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

1.1

\n

Background and Rationale

\n

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor \u03b1 activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell\u2019s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole \u2265 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

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

1.2

\n

Breast Cancer

\n

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

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

1.3

\n

Endocrine Therapy for Breast Cancer

\n

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

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

1.3.1

\n

Fulvestrant for Post Menopausal Women with Breast Cancer

\n

Fulvestrant (Faslodex\u00ae, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex\u00ae\n(fulvestrant) Injection for \u201c\u2026the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy\u201d.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

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

1.3.2

\n

Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease

\n

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

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

1.3.3

\n

Rationale for Fulvestrant for this Trial

\n

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

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

1.4

\n

Everolimus (RAD001)

\n

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican\u00ae) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress\u00ae) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor\u00ae and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor\u00ae received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia\u00ae in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor\u00ae was\napproved for \u201cprogressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease\u201d in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor\u00ae received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor\u00ae received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n\u2022

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\u2022

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

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

1.4.1

\n

mTOR Pathway and Mechanism of Action

\n

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n\u2022\n\u2022\n\u2022

\n

\u2022\n\u2022

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n\u2022

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\u2022

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 \u03bcM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or \u2018resistant\u2019 (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

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

1.4.2

\n

Pre-Clinical Safety

\n

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator\u2019s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-\u03c4 is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-\u03c4 and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator\u2019s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator\u2019s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican\u00ae, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress\u00ae) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator\u2019s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor\u00ae for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n\u2022\n\u2022\n\u2022\n\u2022

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor\u00ae) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence \u2265 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence \u2265\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence \u2265 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence \u2265 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator\u2019s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

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

See section 1.4.3 Clinical Experience.

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

1.5

\n

Rationale and Study Design

\n

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

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

See section 2 Objectives.

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

2.1

\n

Primary Objective

\n

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

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

2.2

\n

Secondary Objectives

\n

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

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

See section 3 Selection of Patients.

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

3.1

\n

Eligibility Criteria

\n

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n\u2022\n\u2022

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n\u2022

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage \u2265 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

total white blood cell count (leukocytes, WBC) \u2265 3.0 x 109/L, absolute\nneutrophil count (ANC) \u2265 1.5 x 109/L and platelet count \u2265 100 x 109/L\nhemoglobin \u2265 9 g/dL\nserum bilirubin \u2264 1.5 x ULN\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\nserum creatinine \u2264 1.5 x ULN\nserum albumin \u2265 3 g/dL\nfasting serum cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND fasting\ntriglycerides \u2264 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR \u2264 1.5 (Anticoagulation is allowed if target INR \u2264 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin \u2264 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as \u2265 20 mm by chest x-ray, as \u2265\n10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n\u2022

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\u2022

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\u2022

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient\u2019s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

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

See section 4 Randomization Procedures.

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

4.1

\n

Ethics

\n

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

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

4.2

\n

Regulatory Requirements

\n

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

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

4.3

\n

Patient Randomization

\n

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin \u2264 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

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

See section 5 Treatment Plan.

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

5.1

\n

Administration Schedule

\n

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

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

5.2

\n

Dosing and Administration

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

5.2.1

\n

Fulvestrant (Arm A and Arm B)

\n

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

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

5.2.2

\n

Everolimus or Placebo (Arm A and Arm B)

\n

\u2022

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\u2022

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\u2022

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\u2022

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\u2022

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\u2022

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\u2022

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

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

5.3

\n

Dose Modifications and Toxicity Management

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

5.3.1

\n

Dose Modifications General Guidelines for Everolimus/\nPlacebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n\u2022

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\u2022

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is \u2264 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\u2022

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\u2022

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\u2022

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\u2022

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nIf resolution occurs within \u2264 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade \u2264 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, \u2265 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade \u22641

\n

(platelets <50, \u2265 25 x 10 /L)

\n

If resolution occurs \u2264 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, \u2265 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade \u2264 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade \u22641 or baseline\nvalue\nIf AE resolution occurs \u2264 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade \u2264 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade \u2264 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

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

5.3.2

\n

Common Adverse Events Associated with Everolimus

\n

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for \u2265 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence \u2265 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence \u2265 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator\u2019s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

\u2264 baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n\u2264 baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n\u2022

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\u2022

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered \u2018cured\u2019).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n\u02c32 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed \u201cmiracle mouth wash\u2019\u2019 QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using \u201cmiracle mouthwash\u2019\u2019.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and \u201cmiracle mouth wash\u201d.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and \u201cmiracle mouth wash\u201d\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase\u00ae) or Periogard\u00ae oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol\u2013containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to \u2264 grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade \u2264\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to \u2264 grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade \u2264 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to \u2264\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

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

5.3.3

\n

Concomitant Therapies

\n

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken \u2264 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

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

5.3.4

\n

Prohibited Therapies and Restrictions

\n

The following restrictions apply during the entire duration of the study:\n\u2022

\n

No other investigational therapy should be given to patients.

\n

\u2022

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\u2022

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\u2022

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\u2022

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\u2022

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\u2022

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\u2022

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\u2022

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\u2022

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John\u2019s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week\u2019s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient\u2019s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

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

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

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

See section 5.4 Supportive Care.

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

5.5

\n

Duration of Therapy

\n

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to \u2264 grade 1 (or if >grade 1, event must be permanent and stable).

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

5.6

\n

Withdrawal of Patients from Study

\n

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n\u2022

\n

Withdrawal of the patient\u2019s consent (patient\u2019s decision to withdraw for any reason)

\n

\u2022

\n

Termination of the study by PrECOG

\n

\u2022

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\u2022

\n

Inability to comply with protocol

\n

\u2022

\n

Discretion of the investigator

\n

\u2022

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

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

See section 6 Measurement of Effect.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_6_1", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

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

6.1.1

\n

Definitions

\n

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

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

6.1.2

\n

Disease Parameters

\n

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n\u2022

\n

\u2265 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\u2022

\n

\u2265 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\u2022

\n

\u2265 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be \u2265 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with \u2265 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n\u2018Cystic lesions\u2019 thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

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

6.1.3

\n

Methods for Evaluation of Measurable Disease

\n

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and \u2265 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n\u2022\n\u2022

\n

\u2022

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A \u2018positive\u2019 FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest \u201cincrease\u201d in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from \u201ctrace\u201d to\n\u201clarge\u201d, an increase in nodal disease from \u201clocalized\u201d to \u201cwidespread\u201d, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of \u201cnon-target\u201d lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient\u2019s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n\u201csymptomatic deterioration\u201d. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*\u2018Non-CR/Non-PD\u2019 is preferred over \u2018stable disease\u2019 for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

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

See section 6.1.4 Response Criteria.

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

6.1.5

\n

Duration of Response

\n

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

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

6.1.6

\n

Progression-Free Survival

\n

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN \u2264 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

\u00a3

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

\u00a3

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: \u2264 4 weeks of randomization; if assessments required \u2264 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: \u2264 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered \u2018cured\u2019) should have HCV RNAPCR testing performed on \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until \u2264 grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n\u00a3 Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

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

See section 7 Study Parameters.

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

7.1

\n

Procedures by Visit

\n

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

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

7.1.1

\n

Pre-Study

\n

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin \u2264 4 weeks of randomization to protocol therapy:\n\u2022

\n

Medical history

\n

\u2022

\n

Assessment of baseline signs and symptoms

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\u2022

\n

PT with INR

\n

\u2022

\n

Urinalysis

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n\u2022 known or suspected past hepatitis B infection\n\u2022 blood transfusion(s) prior to 1990\n\u2022 current or prior IV drug users\n\u2022 current or prior dialysis\n\u2022 household contact with hepatitis B infected patient(s)\n\u2022 current or prior high-risk sexual activity\n\u2022 body piercing or tattoos\n\u2022 mother known to have hepatitis B\n\u2022 history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon \u2018curative\u2019 treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

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

7.1.2

\n

Induction Phase (fulvestrant + everolimus/placebo)

\n

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within \u2264 7 days of Cycle 1 Day 1.

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\u2022

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\u2022

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

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

7.1.3

\n

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to \u2264 grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\u2022

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

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

7.1.4

\n

Continuation Phase (fulvestrant +/- everolimus)

\n

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until \u2264 grade 1\nor if the grade is >1, the event must be permanent and stable.\n\u2022

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\u2022

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n\u2022

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

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

7.1.5

\n

Follow-Up Off-Therapy

\n

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264 grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

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

See section 8 Drug Formulation and Procurement.

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

8.1

\n

Everolimus

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

8.1.1

\n

Packaging and Labeling

\n

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

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

8.1.2

\n

Storage Requirements/Stability

\n

Everolimus should be stored at room temperature between 20\u00b0C to 25\u00b0C (68\u00b0F to 77\u00b0F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n\u2022

\n

Everolimus/placebo dose may be taken with or without food.

\n

\u2022

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\u2022

\n

Vomited doses should not be replaced.

\n

\u2022

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

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

See section 8.1.3 Handling, Dispensing and Administration.

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

8.1.4

\n

Side Effects

\n

The most common adverse reactions (incidence \u2265 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence \u2265 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

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

8.1.5

\n

Investigational Product Records at Investigational Site(s)

\n

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n\u2022

\n

Amount received and placed in storage area.

\n

\u2022

\n

Amount currently in storage area.

\n

\u2022

\n

Label ID number or batch number.

\n

\u2022

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\u2022

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\u2022

\n

Amount transferred to another area for dispensing or storage.

\n

\u2022

\n

Non-study disposition (e.g., wasted, broken).

\n

\u2022

\n

Amount returned to manufacturer, if applicable

\n

\u2022

\n

Amount destroyed at study site, if applicable

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

8.1.6

\n

Return and Destruction of Investigational Product

\n

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site\u2019s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

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

8.2

\n

Fulvestrant (Faslodex\uf6da)\n8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide\u2122) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2\u00b0-8\u00b0C (36\u00b0-46\u00b0F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex\u00ae Package Insert 1621903 Rev 12/11)\n\u2022 Remove the glass syringe barrel from tray and check that it is not damaged\n\u2022 Remove perforated patient record label from syringe\n\u2022 Peel open the safety needle outer packaging.\n\u2022 Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n\u2022 Twist to lock the needle to the luer container.\n\u2022 Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n\u2022 Remove excess gas from the syringe.\n\u2022 Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle \u2018bevel up\u2019 position is\norientated to the lever arm (Figure 3).\n\u2022 Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n\u2022 Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n\u2022 If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n\u2022 Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex\u00ae treatment groups,\nregardless of the investigator\u2019s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex\u00ae and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex\u00ae If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher\u2019s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

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

See section 9 Statistical Considerations.

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

See section 9.1 Primary Endpoint Analysis.

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

9.2

\n

Safety Analyses

\n

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

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

9.3

\n

Analyses of Other Secondary Endpoints

\n

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

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

10 Adverse Event Reporting

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

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator\u2019s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n\u2022

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\u2022

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\u2022

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\u2022

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\u2022

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories \u2018Definite\u2019, \u2018probable\u2019 and \u2018possible\u2019 are considered study drug related.\nCategories \u2018not likely\u2019 and \u2018not related\u2019 are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

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

10.2 Handling of Serious Adverse Events (SAEs)

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

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n\u2022

\n

results in death,

\n

\u2022

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\u2022

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\u2022

\n

results in persistent or significant disability/incapacity,

\n

\u2022

\n

is a congenital anomaly/birth defect,

\n

\u2022

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

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

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator\u2019s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM \u2013 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE\u2019s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

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

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

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

11 Administrative

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

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

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

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

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

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

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

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

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

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

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

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

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

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

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

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n\u2022\n\u2022\n\u2022

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

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

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n\u00b0C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

\u00b5M\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

\u00b5g

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

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

13 Appendix A: Eligibility Checklist\n\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n\u2264 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) \u2265 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) \u2265 1.5 x 10 /L and platelet count \u2265 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin \u2265 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin \u2264 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine \u2264 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin \u2265 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND Fasting Triglycerides \u2264 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR \u2264 1.5. (Anticoagulation is allowed if target INR \u2264 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n\u2265 20 mm by chest x-ray, as \u2265 10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n\u2022 Bisphosphonates, Zometa or Xgeva for bone metastases\n\u2022 Hormonal therapy (e.g., AI, Tamoxifen)\n\u2022 a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient\u2019s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

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

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

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

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John\u2019s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John\u2019s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John\u2019s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA\u2019s\n\u201cGuidance for Industry, Drug Interaction Studies\u201d, the University of Washington\u2019s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

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

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient\u2019s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

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

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

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

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

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

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex\u00ae) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO\u2019Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses\u2019 Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator\u2019s Statement\n1.

\n

I have carefully read this protocol entitled \u201cRandomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014\u201d (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

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

See section 20 Investigator's Statement.

", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "NCT01797120_PROTOCOL", + "label": "PrE0102: Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant plus Everolimus", + "description": "Version 2.0, January 22 2014 protocol document for PrECOG study PrE0102 (NCT01797120).", + "language": { + "id": "Code_DocLang_1", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_DocType_1", + "extensionAttributes": [], + "code": "C70817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Protocol", + "instanceType": "Code" + }, + "templateName": "PrECOG Protocol Template", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_DocStatus_1", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_DocVersion_1", + "extensionAttributes": [], + "name": "PROTOCOL_VERSION_DATE", + "label": "Protocol Version Date", + "description": "Date of the final protocol version", + "type": { + "id": "Code_DocDate_1", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2014-01-22", + "geographicScopes": [], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "1.5.0" +} diff --git a/output/json/NCT01797120-usdm-20260716T1134.json b/output/json/NCT01797120-usdm-20260716T1134.json new file mode 100644 index 0000000..ac0703c --- /dev/null +++ b/output/json/NCT01797120-usdm-20260716T1134.json @@ -0,0 +1,14385 @@ +{ + "study": { + "id": "Study_60", + "extensionAttributes": [], + "name": "NCT01797120", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_46", + "url": "tool-version", + "valueString": "pi-fix-bc-props-specs-in-usdm", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_47", + "url": "usdm-creation-date", + "valueString": "20260716T11:34", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "PrE0102", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "PrE0102", + "label": "Study of Fulvestrant +/\u200b- Everolimus in Post-Menopausal, Hormone-Receptor + Metastatic Breast Ca Resistant to AI", + "description": "Post-menopausal women with hormone-receptor positive (HR+) metastatic breast cancer resistant to aromatase inhibitor (AI) therapy will be randomized to receive Fulvestrant (Faslodex) with Everolimus or Fulvestrant (Faslodex) with a placebo (no active ingredients).\r\n\r\nFulvestrant has demonstrated activity when used as first, second, or third line endocrine therapy, making it an attractive therapy for combination with other agents. In addition, it is commonly reserved for use following disease progression on AI therapy.\r\n\r\nEverolimus is an orally administered drug that blocks a signaling pathway called \"mTOR\". \"mTOR\" acts as a regulator for many processes in the body, including cell growth. Blocking this pathway may have an effect on cell growth.\r\n\r\nThe combination of a novel class of agents (mTOR inhibitors) and an established standard treatment for metastatic HR+ breast cancer may potentially increase the clinical benefit by targeting multiple different biological pathways.", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "PRE-STUDY", + "label": "Pre-Study", + "description": "Occuring before Randomization and Treatment", + "type": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_486", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_487", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "C1D1", + "label": "Cycle 1 Day 1", + "description": "First day fulvestrant is given with everolimus/placebo; start of Induction Phase. Treatment begins within 7 working days of randomization.", + "type": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_489", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_490", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "C1D15", + "label": "Cycle 1 Day 15", + "description": "Second fulvestrant dose (Cycle 1 only) plus safety assessments.", + "type": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_492", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_493", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "C2D1", + "label": "Cycle 2 Day 1", + "description": "Day 1 of Cycle 2 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10038", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_10039", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10040", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "C3D1", + "label": "Cycle 3 Day 1", + "description": "Day 1 of Cycle 3 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10041", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_10042", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10043", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "C4D1", + "label": "Cycle 4 Day 1", + "description": "Day 1 of Cycle 4 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10044", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_10045", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10046", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "C5D1", + "label": "Cycle 5 Day 1", + "description": "Day 1 of Cycle 5 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10047", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_10048", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10049", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "C6D1", + "label": "Cycle 6 Day 1", + "description": "Day 1 of Cycle 6 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10050", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_10051", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10052", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "C7D1", + "label": "Cycle 7 Day 1", + "description": "Day 1 of Cycle 7 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10053", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_10054", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10055", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "C8D1", + "label": "Cycle 8 Day 1", + "description": "Day 1 of Cycle 8 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10056", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_10057", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10058", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "C9D1", + "label": "Cycle 9 Day 1", + "description": "Day 1 of Cycle 9 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10059", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_10060", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10061", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "C10D1", + "label": "Cycle 10 Day 1", + "description": "Day 1 of Cycle 10 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10062", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_10063", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10064", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "C11D1", + "label": "Cycle 11 Day 1", + "description": "Day 1 of Cycle 11 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10065", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_12", + "nextId": "Encounter_14", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_10069", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10070", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_14", + "extensionAttributes": [], + "name": "C12D1", + "label": "Cycle 12 Day 1", + "description": "Day 1 of Cycle 12 (28-day cycle): fulvestrant 500 mg IM plus everolimus/placebo (+/- 72 hour window).", + "type": { + "id": "Code_10066", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_14", + "environmentalSettings": [ + { + "id": "Code_10067", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10068", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "EOI_EOT", + "label": "End of Induction / End of Treatment", + "description": "Performed within 30 days of last fulvestrant dose, before moving to the Continuation Phase or directly to Follow-Up.", + "type": { + "id": "Code_10071", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_14", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_10072", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10073", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "CONT_CXD1", + "label": "Continuation Phase Cycle Day 1", + "description": "Day 1 of each 28-day cycle in the Continuation Phase (begins D29 after last Cycle 12 fulvestrant dose); fulvestrant +/- everolimus until progression or unacceptable toxicity. This visit repeats indefinitely - the protocol defines no fixed cycle count for the Continuation Phase, so it cannot be enumerated and is modeled as a single repeating visit.", + "type": { + "id": "Code_10074", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": "Encounter_17", + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_10075", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10076", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_17", + "extensionAttributes": [], + "name": "FU_OFF_THERAPY", + "label": "Follow-Up Off-Therapy", + "description": "Every 3 months for 3 years from randomization; disease progression, survival and new systemic therapy documented.", + "type": { + "id": "Code_10077", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_16", + "nextId": null, + "scheduledAtId": "Timing_17", + "environmentalSettings": [ + { + "id": "Code_10078", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_10079", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2026-03-27", + "codeSystemVersion": "2026-03-27", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "ELIGIBILITY ASSESSMENT", + "label": "Eligibility Assessment", + "description": "Determine subject meets eligibility requirements", + "previousId": null, + "nextId": "Activity_1", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "INFORMED CONSENT", + "label": "Informed Consent", + "description": "Informed Consent collected", + "previousId": "Activity_2", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "RANDOMIZATION", + "label": "Randomization", + "description": "Randomization", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "MEDICAL HISTORY", + "label": "Medical History", + "description": "Medical History & Assessment of Baseline Signs and Symptoms", + "previousId": "Activity_19", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "PHYSICAL EXAM", + "label": "Physical Examination", + "description": "Physical Examination", + "previousId": "Activity_3", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "CONCOMITANT MEDS", + "label": "Concomitant Medications", + "description": "Concomitant Medications", + "previousId": "Activity_5", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "VITAL SIGNS", + "label": "Vital Signs", + "description": "Vital Signs (Blood Pressure, Heart Rate, Temperature) and Weight", + "previousId": "Activity_18", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10", + "BiomedicalConcept_11" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "ECOG PERFORMANCE STATUS", + "label": "ECOG Performance Status", + "description": "ECOG performance status", + "previousId": "Activity_6", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5", + "BiomedicalConcept_60" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ADVERSE EVENTS ASSESSMENTS", + "label": "Adverse Event Assessment", + "description": "Adverse Event Assessment", + "previousId": "Activity_4", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_47", + "BiomedicalConcept_48" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "IMAGING SCANS", + "label": "Imaging Scans", + "description": "Tumor imaging scans", + "previousId": "Activity_17", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_73", + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "PT/INR", + "label": "PT with INR", + "description": "prothrombin time and international normalized ratio", + "previousId": "Activity_22", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52", + "BiomedicalConcept_53", + "BiomedicalConcept_54" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "URINALYSIS", + "label": "Urinalysis Labs", + "description": "Urinalysis Labs", + "previousId": "Activity_23", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_26", + "BiomedicalConcept_27", + "BiomedicalConcept_28" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "CBC", + "label": "CBC with differentials, Platelets", + "description": "CBC with differentials, Platelets", + "previousId": "Activity_10", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "CHEMISTRY LABS", + "label": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "description": "Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein, Phosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin, Magnesium, Uric Acid.", + "previousId": "Activity_24", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18", + "BiomedicalConcept_19", + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_1", + "BiomedicalConceptSurrogate_8" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "GLUCOSE", + "label": "Fasting Glucose", + "description": "Fasting Glucose", + "previousId": "Activity_8", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "LIPID PROFILE", + "label": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "description": "Fasting serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "HBV-DNA-1", + "label": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "description": "HBV-DNA, HbsAg, HBsAb, HBcAb, HCV- RNA-PCR", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2", + "BiomedicalConceptSurrogate_3", + "BiomedicalConceptSurrogate_4", + "BiomedicalConceptSurrogate_5", + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "HBV-DNA-2", + "label": "HBV DNA", + "description": "HBV DNA", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_2" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "HCV", + "label": "HCV RNA-PCR", + "description": "HCV RNA-PCR", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_6" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "COMPLIANCE", + "label": "Study Drug Compliance (Pill Diary)", + "description": "Study Drug Compliance (Pill Diary)", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19", + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "PFTS", + "label": "PFTs with DLCO as medically indicatedn", + "description": "PFTs with DLCO as medically indicatedn", + "previousId": "Activity_30", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_7" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "ARM A", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Everolimus 10mg PO QD", + "type": { + "id": "Code_4", + "extensionAttributes": [], + "code": "C174266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Experimental Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "ARM B", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500mg IM Q28D (loading D1/D15) + Placebo PO QD", + "type": { + "id": "Code_6", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_7", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Pre-Study Phase", + "label": "Pre-Study Phase", + "description": "Eligibility assessment, up to 28 days prior to C1D1", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Induction Phase", + "label": "Induction Phase", + "description": "From C1D1 until disease progression or discontinuation", + "type": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Continuation Phase", + "label": "Continuation Phase", + "description": "Continuation Phase (until progression or unacceptable toxicity", + "type": { + "id": "Code_813", + "extensionAttributes": [], + "code": "C123452", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "CONTINUATION TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Follow-up Off Therapy", + "label": "Follow-up, off therapy", + "description": "Post-EOT survival and safety follow-up", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "SCREENING_ELEMENT", + "label": "Screening", + "description": "Pre-study eligibility and baseline assessment period (within 4 weeks of randomization).", + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "Screening Exit / Randomization", + "label": "Screening Exit / Randomization", + "description": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "text": "Patient meets all eligibility criteria in Section 3 and is randomized 1:1 (everolimus:placebo) via the interactive web registration (IWR) system, stratified by ECOG PS (0 vs 1), measurable disease (yes vs no) and prior chemotherapy (yes vs no). Protocol therapy must begin within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "INDUCTION_EVE_FUL", + "label": "Induction: Fulvestrant + Everolimus", + "description": "Induction treatment for Arm A: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus everolimus 10 mg PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "INDUCTION_PBO_FUL", + "label": "Induction: Fulvestrant + Placebo", + "description": "Induction treatment for Arm B: fulvestrant 500 mg IM (D1 & D15 of Cycle 1, then D1 each cycle) plus placebo PO daily, 28-day cycles, max 12 cycles.", + "transitionStartRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "Induction Phase Entry", + "label": "Induction Phase Entry", + "description": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "text": "Cycle 1 Day 1 is the first day on which fulvestrant is given in combination with everolimus/placebo, within 7 working days of randomization.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "Induction Phase Exit", + "label": "Induction Phase Exit", + "description": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "text": "Completion of a maximum of 12 28-day cycles, OR documented disease progression, OR unacceptable toxicity, whichever occurs first. End of Induction / End of Treatment assessments are performed within 30 days of the last dose of fulvestrant.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_4" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "CONTINUATION_EVE_FUL", + "label": "Continuation: Fulvestrant + Everolimus", + "description": "Continuation treatment for patients originally randomized to everolimus: fulvestrant 500 mg IM D1 every 28-day cycle plus everolimus, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_3" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "CONTINUATION_FUL", + "label": "Continuation: Fulvestrant alone", + "description": "Continuation treatment for patients originally randomized to placebo: fulvestrant 500 mg IM D1 every 28-day cycle alone, until progression or unacceptable toxicity.", + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "Continuation Phase Entry", + "label": "Continuation Phase Entry", + "description": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "text": "No evidence of disease progression after 12 cycles of Induction; patient is unblinded. Day 1 of the Continuation Phase begins 28 days (D29) after the last fulvestrant dose given in Cycle 12.", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "Continuation Phase Exit", + "label": "Continuation Phase Exit", + "description": "Documented disease progression or unacceptable toxicity.", + "text": "Documented disease progression or unacceptable toxicity.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [ + "StudyIntervention_5" + ], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "FOLLOW_UP_ELEMENT", + "label": "Follow-Up Off-Therapy", + "description": "Off-therapy follow-up for disease progression and survival, every 3 months for 3 years from randomization.", + "transitionStartRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Entry", + "label": "Follow-Up Off-Therapy Entry", + "description": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "text": "Discontinuation of all protocol therapy (end of treatment for any reason per Sections 5.5/5.6).", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "Follow-Up Off-Therapy Exit", + "label": "Follow-Up Off-Therapy Exit", + "description": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "text": "Three years from the date of randomization, or death. Patients who have not progressed continue imaging every 3 months until documented progression, then are followed for survival.", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand for Progression-Free Survival (PFS)", + "label": "Primary Estimand", + "description": "Comparison of PFS between fulvestrant plus everolimus versus fulvestrant plus placebo in AI-resistant HR+ metastatic breast cancer. Constructed retrospectively per ICH E9(R1); this protocol predates the 2019 addendum.", + "populationSummary": "Post-menopausal women with HR+ (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy; ECOG PS 0-1; no prior mTOR inhibitor; up to one prior systemic chemotherapy for metastatic disease. Randomized 1:1; approximately 120 eligible patients.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Composite: death is included as a PFS event (composite endpoint definition per \u00a76.1.6). The time-to-event variable captures whichever occurs first: progression or death.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_2", + "extensionAttributes": [], + "name": "Discontinuation of everolimus due to toxicity", + "label": "Discontinuation of everolimus due to toxicity", + "description": null, + "text": "Patient permanently discontinues everolimus or placebo due to an adverse event but continues on fulvestrant monotherapy.", + "strategy": "Treatment-policy: patient remains on study and continues fulvestrant alone per \u00a75.5. Follow-up for progression and survival continues. PFS events occurring after everolimus discontinuation are included in the primary analysis regardless of treatment status.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_3", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or is lost to follow-up before a PFS event is documented.", + "strategy": "Hypothetical (censoring): patient is censored at the date of last tumor assessment. The estimand implicitly assumes non-informative censoring \u2014 that censored patients would have experienced events at the same rate as those who remained in follow-up.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_4", + "extensionAttributes": [], + "name": "Initiation of prohibited anti-cancer therapy before progression", + "label": "Initiation of prohibited anti-cancer therapy before progression", + "description": null, + "text": "Patient receives a prohibited anti-cancer agent before disease progression is documented.", + "strategy": "Treatment-policy: protocol prohibits new anti-cancer agents before progression (\u00a75.3.4). If such a violation occurred, the patient would remain in the analysis with events counted as observed. No censoring at time of prohibited therapy initiation is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_2", + "extensionAttributes": [], + "name": "Estimand for Overall Survival (OS)", + "label": "Secondary Estimand \u2014 OS", + "description": "Comparison of overall survival between treatment arms. Descriptive; no pre-specified alpha or power.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_2", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_5", + "extensionAttributes": [], + "name": "Discontinuation of study treatment (any reason)", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues all study treatment due to disease progression, toxicity, or other reasons.", + "strategy": "Treatment-policy: all patients who discontinue treatment are followed for survival per \u00a75.5. Deaths after treatment cessation are counted as OS events regardless of reason for discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_6", + "extensionAttributes": [], + "name": "Initiation of subsequent anti-cancer therapy after progression", + "label": "Initiation of subsequent anti-cancer therapy after progression", + "description": null, + "text": "Patient initiates a new anti-cancer regimen after disease progression on study treatment.", + "strategy": "Treatment-policy: OS reflects real-world outcome including the effect of any subsequent therapies. No censoring or adjustment for post-progression treatment is specified.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_7", + "extensionAttributes": [], + "name": "Withdrawal of consent or loss to follow-up", + "label": "Withdrawal of consent or loss to follow-up", + "description": null, + "text": "Patient withdraws consent or cannot be contacted for survival follow-up.", + "strategy": "Hypothetical (censoring): patient is censored at date of last known alive contact. Non-informative censoring assumed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_3", + "extensionAttributes": [], + "name": "Estimand for Time to Progression (TTP)", + "label": "Secondary Estimand \u2014 TTP", + "description": "Comparison of time to disease progression, excluding deaths as events. Descriptive.", + "populationSummary": "All randomized eligible patients (same as PFS estimand population).", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_3", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_8", + "extensionAttributes": [], + "name": "Death before documented progression", + "label": "Death before documented progression", + "description": null, + "text": "Patient dies from any cause before radiological disease progression has been documented per RECIST v1.1.", + "strategy": "Hypothetical (censoring): death without prior progression results in censoring at time of death. This reflects the hypothetical question 'what would the time to progression have been if the patient had not died?' \u2014 the key mechanistic distinction from the PFS estimand.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_9", + "extensionAttributes": [], + "name": "Discontinuation of study treatment", + "label": "Discontinuation of study treatment (any reason)", + "description": null, + "text": "Patient permanently discontinues study treatment before disease progression.", + "strategy": "Treatment-policy: follow-up for progression continues after treatment discontinuation per \u00a75.5. TTP events occurring after treatment cessation are included.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_4", + "extensionAttributes": [], + "name": "Estimand for Objective Response Rate (ORR)", + "label": "Secondary Estimand \u2014 ORR", + "description": "Between-arm comparison of the proportion of patients achieving confirmed CR or PR in patients with measurable disease. Descriptive.", + "populationSummary": "Subset of randomized eligible patients with at least one measurable lesion at baseline per RECIST v1.1.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_4", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_10", + "extensionAttributes": [], + "name": "Death or progression before first response assessment", + "label": "Death or progression before first response assessment", + "description": null, + "text": "Patient dies or has documented progression before achieving CR or PR at any post-baseline tumor assessment.", + "strategy": "Composite: patients who die or progress without ever achieving a confirmed CR or PR are counted as non-responders in the ORR denominator.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_11", + "extensionAttributes": [], + "name": "Treatment discontinuation before response assessment", + "label": "Treatment discontinuation before response assessment", + "description": null, + "text": "Patient discontinues all study treatment before a post-baseline tumor assessment confirming CR or PR.", + "strategy": "Treatment-policy: patients who discontinue without a prior confirmed response are counted as non-responders. No censoring at time of treatment discontinuation.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_5", + "extensionAttributes": [], + "name": "Estimand for Clinical Benefit Rate (CBR)", + "label": "Secondary Estimand \u2014 CBR", + "description": "Between-arm comparison of the proportion of patients with CR, PR, or SD maintained for at least 6 months. Descriptive.", + "populationSummary": "All randomized eligible patients including those with measurable and non-measurable disease.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_5", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_12", + "extensionAttributes": [], + "name": "Death or progression before 6-month stable disease threshold", + "label": "Death or progression before 6-month stable disease threshold", + "description": null, + "text": "Patient dies or has documented progression before 6 months of confirmed stable disease, partial response, or complete response.", + "strategy": "Composite: patients who do not achieve and maintain CR, PR, or SD for at least 6 months are counted as not deriving clinical benefit, regardless of cause.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_13", + "extensionAttributes": [], + "name": "Treatment discontinuation before 6-month landmark", + "label": "Treatment discontinuation before 6-month landmark", + "description": null, + "text": "Patient discontinues study treatment before the 6-month landmark required for SD to qualify as clinical benefit.", + "strategy": "Treatment-policy: patients who discontinue and lack tumor assessment confirming \u22656 months of SD are counted as non-responders for CBR.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + }, + { + "id": "Estimand_6", + "extensionAttributes": [], + "name": "Estimand for Safety and Tolerability", + "label": "Secondary Estimand \u2014 Safety", + "description": "Descriptive characterization of the incidence and severity of adverse events in the safety-evaluable population. No formal hypothesis test.", + "populationSummary": "All patients who received at least one dose of any study treatment. Approximately 65 patients per arm.", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_6", + "interventionIds": [ + "StudyIntervention_1", + "StudyIntervention_2" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_14", + "extensionAttributes": [], + "name": "Treatment discontinuation", + "label": "Treatment discontinuation", + "description": null, + "text": "Patient permanently discontinues study treatment. AE collection continues for 30 days after last dose of any study drug per \u00a75.5.", + "strategy": "While-on-treatment: TEAEs are collected only during the treatment period and the 30-day post-treatment follow-up window. Adverse events occurring beyond this window are not captured as TEAEs in the primary safety analysis.", + "notes": [], + "instanceType": "IntercurrentEvent" + }, + { + "id": "IntercurrentEvent_15", + "extensionAttributes": [], + "name": "Dose reduction or interruption of everolimus", + "label": "Dose reduction or interruption of everolimus", + "description": null, + "text": "Patient undergoes dose modification (reduction or temporary interruption) of everolimus or placebo per protocol dose-modification rules.", + "strategy": "Treatment-policy: AEs that prompt dose modification are recorded regardless of the modification. Events are attributed to the randomized treatment arm and included in the safety summary as observed.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Hormone Receptor-Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "label": "HR+ AI-Resistant Metastatic Breast Cancer", + "description": "Post-menopausal women with hormone-receptor positive (ER/PR+, HER2-negative) stage IV or inoperable locally advanced breast cancer that is resistant to aromatase inhibitor therapy, defined as relapse while receiving adjuvant AI or progressive disease while receiving an AI for metastatic disease.", + "isRareDisease": false, + "codes": [ + { + "id": "Code_7947", + "extensionAttributes": [], + "code": "C9246", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Hormone Receptor-Positive Breast Carcinoma", + "instanceType": "Code" + }, + { + "id": "Code_7948", + "extensionAttributes": [], + "code": "C7771", + "codeSystem": "http://ncithesaurus.nci.nih.gov", + "codeSystemVersion": "24.04e", + "decode": "Metastatic Breast Carcinoma", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_3", + "StudyIntervention_4", + "StudyIntervention_5" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "Primary Objective", + "label": "Primary Objective", + "description": "To assess progression-free survival in post-menopausal patients with hormone-receptor positive metastatic breast cancer that is resistant to aromatase inhibitor therapy treated with fulvestrant and everolimus compared to fulvestrant alone.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2355", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "Progression-Free Survival (PFS)", + "label": "Progression-Free Survival (PFS)", + "description": "Time from randomization to documented disease progression or death, whichever occurs first. Subjects who have neither progressed nor died are censored at the date of last tumor assessment. Disease progression assessed per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To demonstrate that the addition of everolimus to fulvestrant improves PFS compared to fulvestrant plus placebo (hypothesized median PFS improvement from 5.4 to 9.2 months; HR \u2248 0.59).", + "level": { + "id": "Code_2356", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "Secondary Objective", + "label": "Secondary Objective", + "description": "To describe the safety profile, objective response rate, time to progression, and overall survival in this patient population.", + "text": "", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2357", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "Overall Survival (OS)", + "label": "Overall Survival (OS)", + "description": "Time from randomization until death from any cause. Subjects alive at the time of analysis are censored at the date of last follow-up.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize overall survival in the two treatment arms.", + "level": { + "id": "Code_2358", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "Time to Progression (TTP)", + "label": "Time to Progression (TTP)", + "description": "Time from randomization until objective disease progression per RECIST v1.1. Unlike PFS, deaths without prior progression are not counted as events (subjects are censored at time of death).", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To estimate and compare median time to disease progression between treatment arms.", + "level": { + "id": "Code_2359", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "Objective Response Rate (ORR)", + "label": "Objective Response Rate (ORR)", + "description": "Proportion of patients with a confirmed complete response (CR) or partial response (PR) per RECIST v1.1. Assessed in patients with measurable disease at baseline.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients achieving an objective tumor response between treatment arms.", + "level": { + "id": "Code_2360", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "Clinical Benefit Rate (CBR)", + "label": "Clinical Benefit Rate (CBR)", + "description": "Proportion of patients with stable disease (SD) for \u22656 months, partial response (PR), or complete response (CR) \u2014 i.e., CR + PR + SD \u2265 6 months \u2014 per RECIST v1.1.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To compare the proportion of patients deriving clinical benefit (response or prolonged stable disease) between treatment arms.", + "level": { + "id": "Code_2361", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "Safety and Tolerability", + "label": "Safety and Tolerability", + "description": "Incidence, severity (CTCAE v4.0 grade), and type of adverse events, including overall toxicity, grade 3\u20134 toxicities, serious adverse events (SAEs), and second primary cancers. Assessed in all patients who received at least one dose of study treatment.", + "text": "", + "dictionaryId": null, + "notes": [], + "purpose": "To characterize and compare the safety profile of fulvestrant plus everolimus versus fulvestrant plus placebo.", + "level": { + "id": "Code_2362", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "MAIN_TIMELINE", + "label": "PrE0102 Main Schedule of Activities Timeline", + "description": "Main timeline spanning Screening, Induction (max 12 x 28-day cycles), Continuation and Follow-Up.", + "mainTimeline": true, + "entryCondition": "Patient randomized 1:1 to Arm A (fulvestrant + everolimus) or Arm B (fulvestrant + placebo).", + "entryId": "ScheduledActivityInstance_1", + "exits": [], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "C1D1_ANCHOR", + "label": "Cycle 1 Day 1 (anchor)", + "description": "Cycle 1 Day 1 (anchor)", + "type": { + "id": "Code_10080", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P0D", + "valueLabel": "Day 1", + "relativeToFrom": { + "id": "Code_10081", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "SCREEN_WINDOW", + "label": "Within 4 weeks before C1D1", + "description": "Within 4 weeks before C1D1", + "type": { + "id": "Code_10082", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "Up to 28 days before", + "relativeToFrom": { + "id": "Code_10083", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": "P0D", + "windowUpper": "P28D", + "windowLabel": "<= 4 weeks before C1D1", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "C1D15_OFFSET", + "label": "14 days after C1D1", + "description": "14 days after C1D1", + "type": { + "id": "Code_10084", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P14D", + "valueLabel": "Day 15", + "relativeToFrom": { + "id": "Code_10085", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "C2D1_OFFSET", + "label": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "description": "Cycle 2 Day 1 (28 days after Cycle 1 Day 1)", + "type": { + "id": "Code_10086", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10087", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "C3D1_OFFSET", + "label": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "description": "Cycle 3 Day 1 (28 days after Cycle 2 Day 1)", + "type": { + "id": "Code_10088", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10089", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "C4D1_OFFSET", + "label": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "description": "Cycle 4 Day 1 (28 days after Cycle 3 Day 1)", + "type": { + "id": "Code_10090", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10091", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "C5D1_OFFSET", + "label": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "description": "Cycle 5 Day 1 (28 days after Cycle 4 Day 1)", + "type": { + "id": "Code_10092", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10093", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "C6D1_OFFSET", + "label": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "description": "Cycle 6 Day 1 (28 days after Cycle 5 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10094", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_8", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "C7D1_OFFSET", + "label": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "description": "Cycle 7 Day 1 (28 days after Cycle 6 Day 1)", + "type": null, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10095", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_9", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "C8D1_OFFSET", + "label": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "description": "Cycle 8 Day 1 (28 days after Cycle 7 Day 1)", + "type": { + "id": "Code_10096", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10097", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_10", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "C9D1_OFFSET", + "label": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "description": "Cycle 9 Day 1 (28 days after Cycle 8 Day 1)", + "type": { + "id": "Code_10098", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10099", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "C10D1_OFFSET", + "label": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "description": "Cycle 10 Day 1 (28 days after Cycle 9 Day 1)", + "type": { + "id": "Code_10100", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10101", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "C11D1_OFFSET", + "label": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "description": "Cycle 11 Day 1 (28 days after Cycle 10 Day 1)", + "type": { + "id": "Code_10102", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10103", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "C12D1_OFFSET", + "label": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "description": "Cycle 12 Day 1 (28 days after Cycle 11 Day 1)", + "type": { + "id": "Code_10104", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "28 Days", + "relativeToFrom": { + "id": "Code_10105", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": "-PT72H", + "windowUpper": "PT72H", + "windowLabel": "+/- 72 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "EOI_OFFSET", + "label": "End of Induction", + "description": "End of Induction", + "type": { + "id": "Code_10106", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P30D", + "valueLabel": "within 30 days of last dose", + "relativeToFrom": { + "id": "Code_10107", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": "P0D", + "windowUpper": "P30D", + "windowLabel": "within 30 days of last fulvestrant dose", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "CONT_OFFSET", + "label": "Continuation Day 1", + "description": "Continuation Day 1", + "type": { + "id": "Code_10108", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P28D", + "valueLabel": "D29 after last Cycle 12 dose", + "relativeToFrom": { + "id": "Code_10109", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + }, + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "FU_OFFSET", + "label": "Every 3 months follow-up", + "description": "Every 3 months follow-up", + "type": { + "id": "Code_10110", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P84D", + "valueLabel": "Every 3 months (12 weeks)", + "relativeToFrom": { + "id": "Code_10111", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": "-P7D", + "windowUpper": "P7D", + "windowLabel": "+/- 1 week", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SAI_PRESTUDY", + "label": "Pre-Study", + "description": "Pre-Study", + "defaultConditionId": "ScheduledActivityInstance_2", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SAI_C1D1", + "label": "Cycle 1 Day 1", + "description": "Cycle 1 Day 1", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "SAI_C1D15", + "label": "Cycle 1 Day 15", + "description": "Cycle 1 Day 15", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "SAI_C2D1", + "label": "Cycle 2 Day 1", + "description": "Cycle 2 Day 1", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "SAI_C3D1", + "label": "Cycle 3 Day 1", + "description": "Cycle 3 Day 1", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "SAI_C4D1", + "label": "Cycle 4 Day 1", + "description": "Cycle 4 Day 1", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "SAI_C5D1", + "label": "Cycle 5 Day 1", + "description": "Cycle 5 Day 1", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "SAI_C6D1", + "label": "Cycle 6 Day 1", + "description": "Cycle 6 Day 1", + "defaultConditionId": "ScheduledActivityInstance_9", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SAI_C7D1", + "label": "Cycle 7 Day 1", + "description": "Cycle 7 Day 1", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SAI_C8D1", + "label": "Cycle 8 Day 1", + "description": "Cycle 8 Day 1", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "SAI_C9D1", + "label": "Cycle 9 Day 1", + "description": "Cycle 9 Day 1", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "SAI_C10D1", + "label": "Cycle 10 Day 1", + "description": "Cycle 10 Day 1", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_12" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "SAI_C11D1", + "label": "Cycle 11 Day 1", + "description": "Cycle 11 Day 1", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "SAI_C12D1", + "label": "Cycle 12 Day 1", + "description": "Cycle 12 Day 1", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_14" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "SAI_EOI", + "label": "End of Induction / End of Treatment", + "description": "End of Induction / End of Treatment", + "defaultConditionId": "ScheduledDecisionInstance_1", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "SAI_CONT", + "label": "Continuation Phase Cycle Day 1", + "description": "Continuation Phase Cycle Day 1", + "defaultConditionId": "ScheduledDecisionInstance_2", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "SAI_FU", + "label": "Follow-Up Off-Therapy", + "description": "Follow-Up Off-Therapy", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": "Encounter_17" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "SDI_END_INDUCTION", + "label": "Decision: End of Induction (unblinding)", + "description": "Decision: End of Induction (unblinding)", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "No evidence of disease progression after 12 cycles of Induction: patient is unblinded and proceeds to the Continuation Phase.", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "condition": "Disease progression or unacceptable toxicity (or other discontinuation per Sections 5.5/5.6): patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "SDI_CONTINUATION", + "label": "Decision: Continuation Phase progression check", + "description": "Decision: Continuation Phase progression check", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_3", + "extensionAttributes": [], + "condition": "No documented progression and no unacceptable toxicity: continue treatment with the next Continuation cycle (this visit repeats; the protocol sets no fixed Continuation cycle count).", + "conditionTargetId": "ScheduledActivityInstance_16", + "instanceType": "Condition" + }, + { + "id": "Condition_4", + "extensionAttributes": [], + "condition": "Documented disease progression or unacceptable toxicity: patient moves to Follow-Up Off-Therapy.", + "conditionTargetId": "ScheduledActivityInstance_17", + "instanceType": "Condition" + } + ] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus Everolimus in Post-Menopausal Patients with Hormone-Receptor Positive Metastatic Breast Cancer Resistant to Aromatase Inhibitor Therapy", + "type": { + "id": "Code_8497", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1" + ], + "dateValues": [], + "amendments": [], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "PrECOG, LLC", + "label": "PrECOG", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7949", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "PrECOG, LLC, 1818 Market Street, Suite 1100, Philadelphia, PA 19103", + "lines": [ + "1818 Market Street", + "Suite 1100" + ], + "city": "Philadelphia", + "district": null, + "state": "PA", + "postalCode": "19103", + "country": { + "id": "Code_7950", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "Novartis Pharmaceuticals Corporation", + "label": "Novartis", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_7951", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_7952", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "clinicaltrials.gov", + "label": "clinicaltrials.gov", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9956", + "extensionAttributes": [], + "code": "C188863", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Regulatory Agency", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "National Library of Medicine\n8600 Rockville Pike, Bethesda, MD 20894", + "lines": [ + "National Library of Medicine", + "8600 Rockville Pike" + ], + "city": "Bethesda", + "district": null, + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_9957", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_4", + "extensionAttributes": [], + "name": "VendorLab1", + "label": "Vendor1", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9958", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_4", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9959", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_5", + "extensionAttributes": [], + "name": "VendorLab2", + "label": "Vendor2", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_9961", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_5", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_9962", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Clinical Study Sponsor", + "label": "Clinical Study Sponsor", + "description": "PrECOG, LLC serves as the clinical study sponsor and coordinating group for this investigator-initiated trial.", + "code": { + "id": "Code_8489", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_2", + "extensionAttributes": [], + "name": "Study Chair", + "label": "Study Chair", + "description": null, + "code": { + "id": "Code_9716", + "extensionAttributes": [], + "code": "C19924", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Principal Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_1", + "extensionAttributes": [], + "name": "Noah Kornblum", + "label": null, + "description": null, + "personName": { + "id": "PersonName_1", + "extensionAttributes": [], + "text": null, + "familyName": "Kornblum", + "givenNames": [ + "Noah" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Study Co-Chair", + "label": "Study Co-Chair", + "description": null, + "code": { + "id": "Code_9717", + "extensionAttributes": [], + "code": "C25936", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Investigator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "Joseph A. Sparano", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Sparano", + "givenNames": [ + "Joseph", + "A." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Co-Chair", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_4", + "extensionAttributes": [], + "name": "Medical Monitor", + "label": "Medical Monitor", + "description": null, + "code": { + "id": "Code_9718", + "extensionAttributes": [], + "code": "C51876", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Sponsor Medical Expert", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_3", + "extensionAttributes": [], + "name": "Katherine M. Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_3", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "Katherine", + "M." + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "MD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Medical Monitor", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_5", + "extensionAttributes": [], + "name": "Study Statistician", + "label": "Study Statistician", + "description": null, + "code": { + "id": "Code_9719", + "extensionAttributes": [], + "code": "C51877", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Statistician", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_4", + "extensionAttributes": [], + "name": "Judi Manola", + "label": null, + "description": null, + "personName": { + "id": "PersonName_4", + "extensionAttributes": [], + "text": null, + "familyName": "Manola", + "givenNames": [ + "Judi" + ], + "prefixes": [], + "suffixes": [ + "MS" + ], + "instanceType": "PersonName" + }, + "jobTitle": "Study Statistician", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_6", + "extensionAttributes": [], + "name": "Study Contact", + "label": "Study Contact", + "description": null, + "code": { + "id": "Code_9720", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_5", + "extensionAttributes": [], + "name": "Carolyn Andrews", + "label": null, + "description": null, + "personName": { + "id": "PersonName_5", + "extensionAttributes": [], + "text": null, + "familyName": "Andrews", + "givenNames": [ + "Carolyn" + ], + "prefixes": [], + "suffixes": [ + "RN" + ], + "instanceType": "PersonName" + }, + "jobTitle": "PrECOG Study Contact", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_7", + "extensionAttributes": [], + "name": "Investigational Product Manufacturer", + "label": "Investigational Product Manufacturer", + "description": "Novartis Pharmaceuticals Corporation supplies everolimus and matching placebo for the study.", + "code": { + "id": "Code_9714", + "extensionAttributes": [], + "code": "C25392", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Manufacturer", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_8", + "extensionAttributes": [], + "name": "Pharmacovigilance Group", + "label": "Pharmacovigilance Group", + "description": "Novartis Pharmaceuticals Drug Safety and Epidemiology Department (DS&E). Receives SAE notifications from PrECOG within 24 hours of awareness date.", + "code": { + "id": "Code_9715", + "extensionAttributes": [], + "code": "C215673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Pharmacovigilance Group", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_2" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_9", + "extensionAttributes": [], + "name": "Primary Data Manager", + "label": "Primary Data Manager", + "description": null, + "code": { + "id": "Code_9963", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_6", + "extensionAttributes": [], + "name": "Valerie S", + "label": null, + "description": null, + "personName": { + "id": "PersonName_6", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Valerie" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Primary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_10", + "extensionAttributes": [], + "name": "Secondary Data Manager", + "label": "Secondary Data Manager", + "description": null, + "code": { + "id": "Code_9964", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_7", + "extensionAttributes": [], + "name": "Patrick G", + "label": null, + "description": null, + "personName": { + "id": "PersonName_7", + "extensionAttributes": [], + "text": null, + "familyName": "G", + "givenNames": [ + "Patrick" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Secondary Data Manager", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_11", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9965", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_4" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_8", + "extensionAttributes": [], + "name": "Eva J", + "label": null, + "description": null, + "personName": { + "id": "PersonName_8", + "extensionAttributes": [], + "text": null, + "familyName": "J", + "givenNames": [ + "Eva" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_12", + "extensionAttributes": [], + "name": "Data Acquisition Lead", + "label": "Data Acquisition Lead", + "description": null, + "code": { + "id": "Code_9966", + "extensionAttributes": [], + "code": "C51851", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Project Coordinator", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_5" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_9", + "extensionAttributes": [], + "name": "Melissa T", + "label": null, + "description": null, + "personName": { + "id": "PersonName_9", + "extensionAttributes": [], + "text": null, + "familyName": "T", + "givenNames": [ + "Melissa" + ], + "prefixes": [], + "suffixes": [], + "instanceType": "PersonName" + }, + "jobTitle": "Data Acquisition Lead", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_3", + "extensionAttributes": [], + "name": "Fulvestrant + Everolimus (Arm A)", + "label": "Fulvestrant + Everolimus", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus Everolimus 10 mg orally once daily.", + "role": { + "id": "Code_10033", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10034", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_4", + "extensionAttributes": [], + "name": "Fulvestrant + Placebo (Arm B)", + "label": "Fulvestrant + Placebo", + "description": "Fulvestrant 500 mg IM on Day 1 of each 28-day cycle (Day 1 and 15 of Cycle 1 only) plus matching oral placebo once daily.", + "role": { + "id": "Code_10036", + "extensionAttributes": [], + "code": "C68609", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Active Comparator", + "instanceType": "Code" + }, + "type": { + "id": "Code_10037", + "extensionAttributes": [], + "code": "C54696", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Combination Product", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + }, + { + "id": "StudyIntervention_5", + "extensionAttributes": [], + "name": "Fulvestrant", + "label": "Fulvestrant", + "description": "Fulvestrant administered on its own in Continuation Phase minus the placebo. Indicates subject PFS while on Fulvestrant + Placebo treatment arm (ARM B).", + "role": { + "id": "Code_10112", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_10113", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": null, + "codes": [], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": "Informed Consent", + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "id": "BiomedicalConceptProperty_227", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_40", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_10380", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9623", + "standardCode": { + "id": "Code_10379", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_228", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9625", + "standardCode": { + "id": "Code_10381", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_229", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9626", + "standardCode": { + "id": "Code_10382", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_8", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ELIGMET", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eligibility Criteria Met By Subject", + "label": "Eligibility Criteria Met By Subject", + "synonyms": [ + "Eligibility Criteria Met" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132447", + "properties": [ + { + "id": "BiomedicalConceptProperty_239", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_41", + "instanceType": "ResponseCode", + "name": "ELIGIBILITY CRITERIA MET", + "label": "ELIGIBILITY CRITERIA MET", + "isEnabled": true, + "code": { + "id": "Code_10393", + "extensionAttributes": [], + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ELIGIBILITY CRITERIA MET", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9636", + "standardCode": { + "id": "Code_10392", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_240", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9638", + "standardCode": { + "id": "Code_10394", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_241", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9639", + "standardCode": { + "id": "Code_10395", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_6", + "extensionAttributes": [], + "standardCode": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C132447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Eligibility Criteria Met By Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "synonyms": [ + "MHYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C85522", + "properties": [ + { + "id": "BiomedicalConceptProperty_242", + "extensionAttributes": [], + "name": "Medical History Yes No Indicator", + "label": "Medical History Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9640", + "standardCode": { + "id": "Code_10396", + "extensionAttributes": [], + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_243", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9641", + "standardCode": { + "id": "Code_10397", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_11", + "extensionAttributes": [], + "standardCode": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C85522", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Medical History Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Medical History Reported Term [RETIRED]", + "label": "Medical History Reported Term [RETIRED]", + "synonyms": [ + "Medical History", + "MHTERM" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83118", + "properties": [ + { + "id": "BiomedicalConceptProperty_244", + "extensionAttributes": [], + "name": "Medical History Dictionary Derived Term", + "label": "Medical History Dictionary Derived Term", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9642", + "standardCode": { + "id": "Code_10398", + "extensionAttributes": [], + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_245", + "extensionAttributes": [], + "name": "Medical History Occurrence", + "label": "Medical History Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9643", + "standardCode": { + "id": "Code_10399", + "extensionAttributes": [], + "code": "C83067", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_246", + "extensionAttributes": [], + "name": "Medical History Pre-specified", + "label": "Medical History Pre-specified", + "isRequired": true, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9644", + "standardCode": { + "id": "Code_10400", + "extensionAttributes": [], + "code": "C87897", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Pre-specified", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_247", + "extensionAttributes": [], + "name": "Medical History Reported Term", + "label": "Medical History Reported Term", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9645", + "standardCode": { + "id": "Code_10401", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_248", + "extensionAttributes": [], + "name": "Medical History Category", + "label": "Medical History Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9646", + "standardCode": { + "id": "Code_10402", + "extensionAttributes": [], + "code": "C83018", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_249", + "extensionAttributes": [], + "name": "Medical History Subcategory", + "label": "Medical History Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9647", + "standardCode": { + "id": "Code_10403", + "extensionAttributes": [], + "code": "C83143", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_12", + "extensionAttributes": [], + "standardCode": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ECOG101", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECOG - Performance Status", + "label": "ECOG - Performance Status", + "synonyms": [ + "ECOG1-Performance Status", + "ECOG101", + "ECOG - Performance Status" + ], + "reference": "/mdr/bc/biomedicalconcepts/C102408", + "properties": [ + { + "id": "BiomedicalConceptProperty_250", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9648", + "standardCode": { + "id": "Code_10404", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_251", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9649", + "standardCode": { + "id": "Code_10405", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_13", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C102408", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG - Performance Status", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Physical Examination Finding", + "label": "Physical Examination Finding", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C83119", + "properties": [], + "code": { + "id": "AliasCode_21", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-04-02", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_252", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9650", + "standardCode": { + "id": "Code_10406", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_253", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_42", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_10408", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9651", + "standardCode": { + "id": "Code_10407", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_254", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9653", + "standardCode": { + "id": "Code_10409", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_255", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9654", + "standardCode": { + "id": "Code_10410", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_256", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9655", + "standardCode": { + "id": "Code_10411", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_257", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9656", + "standardCode": { + "id": "Code_10412", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_258", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9657", + "standardCode": { + "id": "Code_10413", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_259", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_43", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_10415", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9658", + "standardCode": { + "id": "Code_10414", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_260", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9660", + "standardCode": { + "id": "Code_10416", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_261", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9661", + "standardCode": { + "id": "Code_10417", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_262", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9662", + "standardCode": { + "id": "Code_10418", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_263", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9663", + "standardCode": { + "id": "Code_10419", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_264", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9664", + "standardCode": { + "id": "Code_10420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_265", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_44", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_10422", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9665", + "standardCode": { + "id": "Code_10421", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_266", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9667", + "standardCode": { + "id": "Code_10423", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_267", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9668", + "standardCode": { + "id": "Code_10424", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_268", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9669", + "standardCode": { + "id": "Code_10425", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_269", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9670", + "standardCode": { + "id": "Code_10426", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "id": "BiomedicalConceptProperty_270", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9671", + "standardCode": { + "id": "Code_10427", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_271", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9672", + "standardCode": { + "id": "Code_10428", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_272", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9673", + "standardCode": { + "id": "Code_10429", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_273", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9674", + "standardCode": { + "id": "Code_10430", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5688", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5767", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Body Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "id": "BiomedicalConceptProperty_274", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9675", + "standardCode": { + "id": "Code_10431", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_275", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9676", + "standardCode": { + "id": "Code_10432", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_276", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9677", + "standardCode": { + "id": "Code_10433", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10029", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "id": "BiomedicalConceptProperty_277", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9678", + "standardCode": { + "id": "Code_10434", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_278", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9679", + "standardCode": { + "id": "Code_10435", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_279", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_45", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10437", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9680", + "standardCode": { + "id": "Code_10436", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_280", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9682", + "standardCode": { + "id": "Code_10438", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_281", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9683", + "standardCode": { + "id": "Code_10439", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10030", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "id": "BiomedicalConceptProperty_282", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9684", + "standardCode": { + "id": "Code_10440", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_283", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9685", + "standardCode": { + "id": "Code_10441", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_284", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_46", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10443", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9686", + "standardCode": { + "id": "Code_10442", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_285", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9688", + "standardCode": { + "id": "Code_10444", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_286", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9689", + "standardCode": { + "id": "Code_10445", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_767", + "extensionAttributes": [], + "standardCode": { + "id": "Code_807", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_287", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9690", + "standardCode": { + "id": "Code_10446", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_288", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9691", + "standardCode": { + "id": "Code_10447", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_289", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_47", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10449", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9692", + "standardCode": { + "id": "Code_10448", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_290", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9694", + "standardCode": { + "id": "Code_10450", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_291", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9695", + "standardCode": { + "id": "Code_10451", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9906", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10662", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "id": "BiomedicalConceptProperty_292", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9696", + "standardCode": { + "id": "Code_10452", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_293", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9697", + "standardCode": { + "id": "Code_10453", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_294", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_48", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10455", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9698", + "standardCode": { + "id": "Code_10454", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_295", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9700", + "standardCode": { + "id": "Code_10456", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_296", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9701", + "standardCode": { + "id": "Code_10457", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5689", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5768", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "id": "BiomedicalConceptProperty_297", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9702", + "standardCode": { + "id": "Code_10458", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_298", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9703", + "standardCode": { + "id": "Code_10459", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_299", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_49", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10461", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9704", + "standardCode": { + "id": "Code_10460", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_300", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9706", + "standardCode": { + "id": "Code_10462", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_301", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9707", + "standardCode": { + "id": "Code_10463", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5690", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5769", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "pH", + "label": "pH", + "synonyms": [ + "PH", + "potential of Hydrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C45997", + "properties": [ + { + "id": "BiomedicalConceptProperty_302", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9708", + "standardCode": { + "id": "Code_10464", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_303", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_50", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10466", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9709", + "standardCode": { + "id": "Code_10465", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_304", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9711", + "standardCode": { + "id": "Code_10467", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_305", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9712", + "standardCode": { + "id": "Code_10468", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5691", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5770", + "extensionAttributes": [], + "code": "C45997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "pH", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "id": "BiomedicalConceptProperty_306", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9713", + "standardCode": { + "id": "Code_10469", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_307", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_51", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10471", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9714", + "standardCode": { + "id": "Code_10470", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_308", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9716", + "standardCode": { + "id": "Code_10472", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10031", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "id": "BiomedicalConceptProperty_309", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9717", + "standardCode": { + "id": "Code_10473", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_310", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_52", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_10475", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9718", + "standardCode": { + "id": "Code_10474", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_311", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9720", + "standardCode": { + "id": "Code_10476", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_312", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9721", + "standardCode": { + "id": "Code_10477", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5692", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5771", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_313", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9722", + "standardCode": { + "id": "Code_10478", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_314", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9723", + "standardCode": { + "id": "Code_10479", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5693", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5772", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event", + "label": "Adverse Event", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_9907", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10663", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "id": "BiomedicalConceptProperty_315", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9724", + "standardCode": { + "id": "Code_10480", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_316", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9725", + "standardCode": { + "id": "Code_10481", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5694", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5773", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "id": "BiomedicalConceptProperty_317", + "extensionAttributes": [], + "name": "CMTRT", + "label": "CMTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9726", + "standardCode": { + "id": "Code_10482", + "extensionAttributes": [], + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_318", + "extensionAttributes": [], + "name": "CMDECOD", + "label": "CMDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9727", + "standardCode": { + "id": "Code_10483", + "extensionAttributes": [], + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_319", + "extensionAttributes": [], + "name": "CMCLAS", + "label": "CMCLAS", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9728", + "standardCode": { + "id": "Code_10484", + "extensionAttributes": [], + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_320", + "extensionAttributes": [], + "name": "CMINDC", + "label": "CMINDC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9729", + "standardCode": { + "id": "Code_10485", + "extensionAttributes": [], + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_321", + "extensionAttributes": [], + "name": "CMDOSE", + "label": "CMDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9730", + "standardCode": { + "id": "Code_10486", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_322", + "extensionAttributes": [], + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9731", + "standardCode": { + "id": "Code_10487", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_323", + "extensionAttributes": [], + "name": "CMDOSU", + "label": "CMDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9732", + "standardCode": { + "id": "Code_10488", + "extensionAttributes": [], + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_324", + "extensionAttributes": [], + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9733", + "standardCode": { + "id": "Code_10489", + "extensionAttributes": [], + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_325", + "extensionAttributes": [], + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9734", + "standardCode": { + "id": "Code_10490", + "extensionAttributes": [], + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_326", + "extensionAttributes": [], + "name": "CMROUTE", + "label": "CMROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9735", + "standardCode": { + "id": "Code_10491", + "extensionAttributes": [], + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_327", + "extensionAttributes": [], + "name": "CMSTDTC", + "label": "CMSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9736", + "standardCode": { + "id": "Code_10492", + "extensionAttributes": [], + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_328", + "extensionAttributes": [], + "name": "CMENDTC", + "label": "CMENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9737", + "standardCode": { + "id": "Code_10493", + "extensionAttributes": [], + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_329", + "extensionAttributes": [], + "name": "CMSTRF", + "label": "CMSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9738", + "standardCode": { + "id": "Code_10494", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_330", + "extensionAttributes": [], + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9739", + "standardCode": { + "id": "Code_10495", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_331", + "extensionAttributes": [], + "name": "CMSTTPT", + "label": "CMSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9740", + "standardCode": { + "id": "Code_10496", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_332", + "extensionAttributes": [], + "name": "CMENRF", + "label": "CMENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9741", + "standardCode": { + "id": "Code_10497", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_333", + "extensionAttributes": [], + "name": "CMENRTPT", + "label": "CMENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9742", + "standardCode": { + "id": "Code_10498", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_334", + "extensionAttributes": [], + "name": "CMENTPT", + "label": "CMENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9743", + "standardCode": { + "id": "Code_10499", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9908", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10664", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RANDOM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Randomization", + "label": "Randomization", + "synonyms": [ + "randomization", + "RANDOM", + "Randomized", + "Trial is Randomized", + "randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25196", + "properties": [ + { + "id": "BiomedicalConceptProperty_335", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_53", + "instanceType": "ResponseCode", + "name": "RANDOM", + "label": "RANDOM", + "isEnabled": true, + "code": { + "id": "Code_10501", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "RANDOM", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9744", + "standardCode": { + "id": "Code_10500", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_336", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_54", + "instanceType": "ResponseCode", + "name": "Trial is Randomized", + "label": "Trial is Randomized", + "isEnabled": true, + "code": { + "id": "Code_10503", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial is Randomized", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9746", + "standardCode": { + "id": "Code_10502", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_337", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9748", + "standardCode": { + "id": "Code_10504", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_338", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9749", + "standardCode": { + "id": "Code_10505", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_339", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9750", + "standardCode": { + "id": "Code_10506", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_340", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9751", + "standardCode": { + "id": "Code_10507", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10032", + "extensionAttributes": [], + "code": "C25196", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Randomization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Prothrombin Time", + "label": "Prothrombin Time", + "synonyms": [ + "PT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C62656", + "properties": [ + { + "id": "BiomedicalConceptProperty_341", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9752", + "standardCode": { + "id": "Code_10508", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_342", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_55", + "instanceType": "ResponseCode", + "name": "s", + "label": "s", + "isEnabled": true, + "code": { + "id": "Code_10510", + "extensionAttributes": [], + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9753", + "standardCode": { + "id": "Code_10509", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_343", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_56", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10512", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9755", + "standardCode": { + "id": "Code_10511", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_344", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9757", + "standardCode": { + "id": "Code_10513", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_345", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9758", + "standardCode": { + "id": "Code_10514", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5695", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5774", + "extensionAttributes": [], + "code": "C62656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_53", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "International Normalized Ratio of Prothrombin Time", + "label": "International Normalized Ratio of Prothrombin Time", + "synonyms": [ + "INR", + "Prothrombin Intl. Normalized Ratio" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64805", + "properties": [ + { + "id": "BiomedicalConceptProperty_346", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9759", + "standardCode": { + "id": "Code_10515", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_347", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_57", + "instanceType": "ResponseCode", + "name": "RATIO", + "label": "RATIO", + "isEnabled": true, + "code": { + "id": "Code_10517", + "extensionAttributes": [], + "code": "C44256", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RATIO", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9760", + "standardCode": { + "id": "Code_10516", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_348", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_58", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10519", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9762", + "standardCode": { + "id": "Code_10518", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_349", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9764", + "standardCode": { + "id": "Code_10520", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5696", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5775", + "extensionAttributes": [], + "code": "C64805", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "International Normalized Ratio of Prothrombin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/APTTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Activated Partial Thromboplastin Time", + "label": "Activated Partial Thromboplastin Time", + "synonyms": [ + "APTT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38462", + "properties": [ + { + "id": "BiomedicalConceptProperty_350", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_9765", + "standardCode": { + "id": "Code_10521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_351", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_59", + "instanceType": "ResponseCode", + "name": "s", + "label": "s", + "isEnabled": true, + "code": { + "id": "Code_10523", + "extensionAttributes": [], + "code": "C42535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "s", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9766", + "standardCode": { + "id": "Code_10522", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_352", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_60", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10525", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9768", + "standardCode": { + "id": "Code_10524", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_353", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9770", + "standardCode": { + "id": "Code_10526", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9909", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10665", + "extensionAttributes": [], + "code": "C38462", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Activated Partial Thromboplastin Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_354", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9771", + "standardCode": { + "id": "Code_10527", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_355", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9772", + "standardCode": { + "id": "Code_10528", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_356", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_61", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10530", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9773", + "standardCode": { + "id": "Code_10529", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_357", + "extensionAttributes": [], + "name": "LBMETHOD", + "label": "LBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9775", + "standardCode": { + "id": "Code_10531", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_358", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9776", + "standardCode": { + "id": "Code_10532", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_359", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9777", + "standardCode": { + "id": "Code_10533", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9910", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10666", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRIGSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triglyceride Measurement", + "label": "Triglyceride Measurement", + "synonyms": [ + "TRIG", + "Triglycerides" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64812", + "properties": [ + { + "id": "BiomedicalConceptProperty_360", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9778", + "standardCode": { + "id": "Code_10534", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_361", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9779", + "standardCode": { + "id": "Code_10535", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_362", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_62", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10537", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9780", + "standardCode": { + "id": "Code_10536", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_363", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9782", + "standardCode": { + "id": "Code_10538", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_364", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9783", + "standardCode": { + "id": "Code_10539", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9911", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10667", + "extensionAttributes": [], + "code": "C64812", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triglyceride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "id": "BiomedicalConceptProperty_365", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9784", + "standardCode": { + "id": "Code_10540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_366", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9785", + "standardCode": { + "id": "Code_10541", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_367", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_63", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10543", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9786", + "standardCode": { + "id": "Code_10542", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_368", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9788", + "standardCode": { + "id": "Code_10544", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_369", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9789", + "standardCode": { + "id": "Code_10545", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "High Density Lipoprotein Cholesterol Measurement", + "label": "High Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "HDL", + "HDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105587", + "properties": [ + { + "id": "BiomedicalConceptProperty_370", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9790", + "standardCode": { + "id": "Code_10546", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_371", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9791", + "standardCode": { + "id": "Code_10547", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_372", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_64", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10549", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9792", + "standardCode": { + "id": "Code_10548", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_373", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9794", + "standardCode": { + "id": "Code_10550", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_374", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9795", + "standardCode": { + "id": "Code_10551", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5697", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5776", + "extensionAttributes": [], + "code": "C105587", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "High Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LDLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Low Density Lipoprotein Cholesterol Measurement", + "label": "Low Density Lipoprotein Cholesterol Measurement", + "synonyms": [ + "LDL", + "LDL Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105588", + "properties": [ + { + "id": "BiomedicalConceptProperty_375", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9796", + "standardCode": { + "id": "Code_10552", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_376", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9797", + "standardCode": { + "id": "Code_10553", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_377", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_65", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10555", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9798", + "standardCode": { + "id": "Code_10554", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_378", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9800", + "standardCode": { + "id": "Code_10556", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_379", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9801", + "standardCode": { + "id": "Code_10557", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_7397", + "extensionAttributes": [], + "standardCode": { + "id": "Code_7476", + "extensionAttributes": [], + "code": "C105588", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Low Density Lipoprotein Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [], + "name": "ECOG Clinical Classification Question", + "label": "ECOG Clinical Classification Question", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C101874", + "properties": [], + "code": { + "id": "AliasCode_9912", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10668", + "extensionAttributes": [], + "code": "C101874", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "ECOG Clinical Classification Question", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "id": "BiomedicalConceptProperty_380", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9802", + "standardCode": { + "id": "Code_10558", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_381", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9803", + "standardCode": { + "id": "Code_10559", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_382", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_66", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10561", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9804", + "standardCode": { + "id": "Code_10560", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_383", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9806", + "standardCode": { + "id": "Code_10562", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_384", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9807", + "standardCode": { + "id": "Code_10563", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5698", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5777", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "id": "BiomedicalConceptProperty_385", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9808", + "standardCode": { + "id": "Code_10564", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_386", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9809", + "standardCode": { + "id": "Code_10565", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_387", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_67", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10567", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9810", + "standardCode": { + "id": "Code_10566", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_388", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9812", + "standardCode": { + "id": "Code_10568", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_389", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9813", + "standardCode": { + "id": "Code_10569", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_9913", + "extensionAttributes": [], + "standardCode": { + "id": "Code_10669", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "id": "BiomedicalConceptProperty_390", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9814", + "standardCode": { + "id": "Code_10570", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_391", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9815", + "standardCode": { + "id": "Code_10571", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_392", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_68", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10573", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9816", + "standardCode": { + "id": "Code_10572", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_393", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9818", + "standardCode": { + "id": "Code_10574", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_394", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9819", + "standardCode": { + "id": "Code_10575", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5699", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5778", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "id": "BiomedicalConceptProperty_395", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9820", + "standardCode": { + "id": "Code_10576", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_396", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9821", + "standardCode": { + "id": "Code_10577", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_397", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_69", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10579", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9822", + "standardCode": { + "id": "Code_10578", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_398", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9824", + "standardCode": { + "id": "Code_10580", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_399", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9825", + "standardCode": { + "id": "Code_10581", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5700", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5779", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "id": "BiomedicalConceptProperty_400", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9826", + "standardCode": { + "id": "Code_10582", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_401", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9827", + "standardCode": { + "id": "Code_10583", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_402", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_70", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10585", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9828", + "standardCode": { + "id": "Code_10584", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_403", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9830", + "standardCode": { + "id": "Code_10586", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_404", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9831", + "standardCode": { + "id": "Code_10587", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5701", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5780", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "id": "BiomedicalConceptProperty_405", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9832", + "standardCode": { + "id": "Code_10588", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_406", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9833", + "standardCode": { + "id": "Code_10589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_407", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_71", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10591", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9834", + "standardCode": { + "id": "Code_10590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_408", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9836", + "standardCode": { + "id": "Code_10592", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_409", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9837", + "standardCode": { + "id": "Code_10593", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5702", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5781", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CO2BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Carbon Dioxide Measurement", + "label": "Carbon Dioxide Measurement", + "synonyms": [ + "Carbon Dioxide", + "CO2" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64545", + "properties": [ + { + "id": "BiomedicalConceptProperty_410", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9838", + "standardCode": { + "id": "Code_10594", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_411", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9839", + "standardCode": { + "id": "Code_10595", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_412", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_72", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10597", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9840", + "standardCode": { + "id": "Code_10596", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_413", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9842", + "standardCode": { + "id": "Code_10598", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_414", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9843", + "standardCode": { + "id": "Code_10599", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5703", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5782", + "extensionAttributes": [], + "code": "C64545", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Carbon Dioxide Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "id": "BiomedicalConceptProperty_415", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9844", + "standardCode": { + "id": "Code_10600", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_416", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9845", + "standardCode": { + "id": "Code_10601", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_417", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_73", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_10603", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9846", + "standardCode": { + "id": "Code_10602", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_418", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9848", + "standardCode": { + "id": "Code_10604", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_419", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9849", + "standardCode": { + "id": "Code_10605", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5704", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5783", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "id": "BiomedicalConceptProperty_420", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9850", + "standardCode": { + "id": "Code_10606", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_421", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9851", + "standardCode": { + "id": "Code_10607", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_422", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_74", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10609", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9852", + "standardCode": { + "id": "Code_10608", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_423", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9854", + "standardCode": { + "id": "Code_10610", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_424", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9855", + "standardCode": { + "id": "Code_10611", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5705", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5784", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_425", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9856", + "standardCode": { + "id": "Code_10612", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_426", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9857", + "standardCode": { + "id": "Code_10613", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_427", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_75", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10615", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9858", + "standardCode": { + "id": "Code_10614", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_428", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9860", + "standardCode": { + "id": "Code_10616", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_429", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9861", + "standardCode": { + "id": "Code_10617", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5706", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5785", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "id": "BiomedicalConceptProperty_430", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9862", + "standardCode": { + "id": "Code_10618", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_431", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9863", + "standardCode": { + "id": "Code_10619", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_432", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_76", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10621", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9864", + "standardCode": { + "id": "Code_10620", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_433", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9866", + "standardCode": { + "id": "Code_10622", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_434", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9867", + "standardCode": { + "id": "Code_10623", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5707", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5786", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "id": "BiomedicalConceptProperty_435", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_9868", + "standardCode": { + "id": "Code_10624", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_436", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9869", + "standardCode": { + "id": "Code_10625", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_437", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_77", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_10627", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9870", + "standardCode": { + "id": "Code_10626", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_438", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_9872", + "standardCode": { + "id": "Code_10628", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_439", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9873", + "standardCode": { + "id": "Code_10629", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_717", + "extensionAttributes": [], + "standardCode": { + "id": "Code_757", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [], + "name": "Tumor Size Measurement", + "label": "Tumor Size Measurement", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106303", + "properties": [ + { + "id": "BiomedicalConceptProperty_440", + "extensionAttributes": [], + "name": "Anatomic Site", + "label": "Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9874", + "standardCode": { + "id": "Code_10630", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_441", + "extensionAttributes": [], + "name": "Observation Result", + "label": "Observation Result", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_9875", + "standardCode": { + "id": "Code_10631", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_442", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9876", + "standardCode": { + "id": "Code_10632", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_443", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9877", + "standardCode": { + "id": "Code_10633", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_444", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9878", + "standardCode": { + "id": "Code_10634", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_445", + "extensionAttributes": [], + "name": "Specimen Anatomic Site", + "label": "Specimen Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9879", + "standardCode": { + "id": "Code_10635", + "extensionAttributes": [], + "code": "C171435", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Specimen Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_446", + "extensionAttributes": [], + "name": "Biospecimen Type", + "label": "Biospecimen Type", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9880", + "standardCode": { + "id": "Code_10636", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_447", + "extensionAttributes": [], + "name": "Unit of Length", + "label": "Unit of Length", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9881", + "standardCode": { + "id": "Code_10637", + "extensionAttributes": [], + "code": "C42578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Unit of Length", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5708", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5787", + "extensionAttributes": [], + "code": "C106303", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Tumor Size Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TUMERGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Tumor Identification", + "label": "Tumor Identification", + "synonyms": [ + "TUMIDENT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94523", + "properties": [ + { + "id": "BiomedicalConceptProperty_448", + "extensionAttributes": [], + "name": "TUORRES", + "label": "TUORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_78", + "instanceType": "ResponseCode", + "name": "TARGET", + "label": "TARGET", + "isEnabled": true, + "code": { + "id": "Code_10639", + "extensionAttributes": [], + "code": "C94520", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "TARGET", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_9882", + "standardCode": { + "id": "Code_10638", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_449", + "extensionAttributes": [], + "name": "TULOC", + "label": "TULOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9884", + "standardCode": { + "id": "Code_10640", + "extensionAttributes": [], + "code": "C170500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Result Anatomical Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_450", + "extensionAttributes": [], + "name": "TULAT", + "label": "TULAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9885", + "standardCode": { + "id": "Code_10641", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_451", + "extensionAttributes": [], + "name": "TUDIR", + "label": "TUDIR", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9886", + "standardCode": { + "id": "Code_10642", + "extensionAttributes": [], + "code": "C54215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Directionality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_452", + "extensionAttributes": [], + "name": "TUMETHOD", + "label": "TUMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9887", + "standardCode": { + "id": "Code_10643", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_453", + "extensionAttributes": [], + "name": "TUEVAL", + "label": "TUEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9888", + "standardCode": { + "id": "Code_10644", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_454", + "extensionAttributes": [], + "name": "TUEVALID", + "label": "TUEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9889", + "standardCode": { + "id": "Code_10645", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_455", + "extensionAttributes": [], + "name": "TUREFID", + "label": "TUREFID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9890", + "standardCode": { + "id": "Code_10646", + "extensionAttributes": [], + "code": "C117442", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Reference Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_456", + "extensionAttributes": [], + "name": "TULNKID", + "label": "TULNKID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9891", + "standardCode": { + "id": "Code_10647", + "extensionAttributes": [], + "code": "C117436", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identifier Link Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_457", + "extensionAttributes": [], + "name": "TUDTC", + "label": "TUDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9892", + "standardCode": { + "id": "Code_10648", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5709", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5788", + "extensionAttributes": [], + "code": "C94523", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Tumor Identification", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NTRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Non-Target Lesion", + "label": "Response in Non-Target Lesion", + "synonyms": [ + "NTRGRESP", + "Non-Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94535", + "properties": [ + { + "id": "BiomedicalConceptProperty_458", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9893", + "standardCode": { + "id": "Code_10649", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_459", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9894", + "standardCode": { + "id": "Code_10650", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_460", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9895", + "standardCode": { + "id": "Code_10651", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_461", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9896", + "standardCode": { + "id": "Code_10652", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5710", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5789", + "extensionAttributes": [], + "code": "C94535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Non-Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TRGRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Response in Target Lesion", + "label": "Response in Target Lesion", + "synonyms": [ + "TRGRESP", + "Target Response" + ], + "reference": "/mdr/bc/biomedicalconcepts/C94534", + "properties": [ + { + "id": "BiomedicalConceptProperty_462", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9897", + "standardCode": { + "id": "Code_10653", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_463", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9898", + "standardCode": { + "id": "Code_10654", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_464", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9899", + "standardCode": { + "id": "Code_10655", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_465", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9900", + "standardCode": { + "id": "Code_10656", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_5711", + "extensionAttributes": [], + "standardCode": { + "id": "Code_5790", + "extensionAttributes": [], + "code": "C94534", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Response in Target Lesion", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OVRLRESP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Overall Response", + "label": "Overall Response", + "synonyms": [ + "OVRLRESP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C96613", + "properties": [ + { + "id": "BiomedicalConceptProperty_466", + "extensionAttributes": [], + "name": "RSLNKGRP", + "label": "RSLNKGRP", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9901", + "standardCode": { + "id": "Code_10657", + "extensionAttributes": [], + "code": "C117394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Disease Response Link Group", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_467", + "extensionAttributes": [], + "name": "RSORRES", + "label": "RSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_9902", + "standardCode": { + "id": "Code_10658", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_468", + "extensionAttributes": [], + "name": "RSEVAL", + "label": "RSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9903", + "standardCode": { + "id": "Code_10659", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_469", + "extensionAttributes": [], + "name": "RSEVALID", + "label": "RSEVALID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_9904", + "standardCode": { + "id": "Code_10660", + "extensionAttributes": [], + "code": "C117043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_470", + "extensionAttributes": [], + "name": "RSDTC", + "label": "RSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_9905", + "standardCode": { + "id": "Code_10661", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_763", + "extensionAttributes": [], + "standardCode": { + "id": "Code_803", + "extensionAttributes": [], + "code": "C96613", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-06-27", + "decode": "Overall Response", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Magnesium Measurement", + "label": "Magnesium Measurement (C64840)", + "description": "A quantitative measurement of the amount of magnesium present in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64840", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_2", + "extensionAttributes": [], + "name": "Hepatitis B DNA Measurement", + "label": "Hepatitis B DNA Measurement (C103404)", + "description": "A measurement of the Hepatitis B virus DNA in a biological specimen", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103404", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_3", + "extensionAttributes": [], + "name": "Hepatitis B Surface Antigen", + "label": "Hepatitis B Virus Surface Antigen Measurement (C64850)", + "description": "A measurement of the surface antigen reaction of a biological specimen to the Hepatitis B virus.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C64850", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_4", + "extensionAttributes": [], + "name": "HBsAb+", + "label": "Hepatitis B Surface Antibody Positive (C153243)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153243", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_5", + "extensionAttributes": [], + "name": "HBsAb-", + "label": "Hepatitis B Surface Antibody Negative (C153244)", + "description": "An indication that antibodies that recognize a hepatitis B virus surface protein have not been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C153244", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_6", + "extensionAttributes": [], + "name": "HCV RNA Positive", + "label": "HCV RNA Positive (C162042)", + "description": "An indication that hepatitis C RNA has been detected in a sample.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C162042", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_7", + "extensionAttributes": [], + "name": "PFTs with DLCO", + "label": "Pulmonary function tests (PFTs) that include DLCO (Diffusing Capacity of the Lungs for Carbon Monoxide) (C38081)", + "description": "A broad range of tests that are performed to assess how well lungs inhale and exhale air and how efficiently they transfer oxygen into the blood.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C38081", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_8", + "extensionAttributes": [], + "name": "Dietary Phosphorus Measurement", + "label": "Dietary Phosphorus Measurement (C184481)", + "description": "A determination of the phosphorus in a nutritional product or meal, or a portion thereof.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C184481", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "Adherence", + "label": "Adherence (C25729)", + "description": "The act of abiding by a stated treatment plan or protocol.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C25729", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Patient Compliance", + "label": "Patient Compliance (C39490)", + "description": "The extent to which a patient conforms to medical advice regarding prescribed regimen, lifestyle, dietary changes, follow-up schedule and other recommendations.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C39490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "Compliance Monitoring", + "label": "Compliance Monitoring (C62737)", + "description": "The act of continuously assessing whether an individual is adhering to their treatment plan.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C62737", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "Non-Compliance With Study Drug", + "label": "Non-Compliance With Study Drug (C49631)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study medication. (NCI)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C49631", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "Non-Compliance with Study Product", + "label": "Non-Compliance with Study Product (C210354)", + "description": "An indication that a subject has not agreed with or followed the instructions related to the study product.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C210354", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "Trial Compliance", + "label": "Trial Compliance (C142734)", + "description": "Adherence to clinical trial-related requirements, good clinical practice (GCP) requirements, and the applicable regulatory requirements. (ICH)", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C142734", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "

See section 1 Introduction.

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

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor \u03b1 activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell\u2019s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole \u2265 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

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

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

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

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

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

Fulvestrant (Faslodex\u00ae, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex\u00ae\n(fulvestrant) Injection for \u201c\u2026the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy\u201d.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

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

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

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

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

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

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican\u00ae) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress\u00ae) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor\u00ae and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor\u00ae received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia\u00ae in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor\u00ae was\napproved for \u201cprogressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease\u201d in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor\u00ae received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor\u00ae received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n\u2022

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\u2022

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

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

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n\u2022\n\u2022\n\u2022

\n

\u2022\n\u2022

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n\u2022

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\u2022

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 \u03bcM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or \u2018resistant\u2019 (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

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

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator\u2019s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-\u03c4 is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-\u03c4 and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator\u2019s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator\u2019s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican\u00ae, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress\u00ae) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator\u2019s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor\u00ae for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n\u2022\n\u2022\n\u2022\n\u2022

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor\u00ae) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence \u2265 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence \u2265\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence \u2265 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence \u2265 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator\u2019s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

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

See section 1.4.3 Clinical Experience.

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

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

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

See section 2 Objectives.

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

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

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

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

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

See section 3 Selection of Patients.

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

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n\u2022\n\u2022

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n\u2022

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage \u2265 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

\u2022

\n

total white blood cell count (leukocytes, WBC) \u2265 3.0 x 109/L, absolute\nneutrophil count (ANC) \u2265 1.5 x 109/L and platelet count \u2265 100 x 109/L\nhemoglobin \u2265 9 g/dL\nserum bilirubin \u2264 1.5 x ULN\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\nserum creatinine \u2264 1.5 x ULN\nserum albumin \u2265 3 g/dL\nfasting serum cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND fasting\ntriglycerides \u2264 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR \u2264 1.5 (Anticoagulation is allowed if target INR \u2264 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin \u2264 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as \u2265 20 mm by chest x-ray, as \u2265\n10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n\u2022

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\u2022

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\u2022

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient\u2019s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

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

See section 4 Randomization Procedures.

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

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

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

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

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

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin \u2264 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

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

See section 5 Treatment Plan.

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

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

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

See section 5.2 Dosing and Administration.

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

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

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

\u2022

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\u2022

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\u2022

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\u2022

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\u2022

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\u2022

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\u2022

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

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

See section 5.3 Dose Modifications and Toxicity Management.

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

Placebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n\u2022

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\u2022

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is \u2264 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\u2022

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\u2022

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\u2022

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\u2022

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\n(or \u2264 grade 2 if baseline values were within the range of grade\n2). If resolution occurs \u2264 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nIf resolution occurs within \u2264 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to \u2264 grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to \u2264 grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n\u2264 grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade \u2264 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, \u2265 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade \u22641

\n

(platelets <50, \u2265 25 x 10 /L)

\n

If resolution occurs \u2264 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, \u2265 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade \u2264 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade \u22641 or baseline\nvalue\nIf AE resolution occurs \u2264 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade \u2264 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade \u2264 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

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

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for \u2265 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence \u2265 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence \u2265 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator\u2019s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

\u2264 baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n\u2264 baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within \u2264 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n\u2022

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\u2022

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered \u2018cured\u2019).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n\u02c32 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation \u02c35x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed \u201cmiracle mouth wash\u2019\u2019 QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using \u201cmiracle mouthwash\u2019\u2019.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and \u201cmiracle mouth wash\u201d.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and \u201cmiracle mouth wash\u201d\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase\u00ae) or Periogard\u00ae oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol\u2013containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to \u2264 grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade \u2264\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to \u2264 grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade \u2264 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within \u2264 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to \u2264\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

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

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken \u2264 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

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

The following restrictions apply during the entire duration of the study:\n\u2022

\n

No other investigational therapy should be given to patients.

\n

\u2022

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\u2022

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\u2022

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\u2022

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\u2022

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\u2022

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\u2022

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\u2022

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\u2022

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John\u2019s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week\u2019s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient\u2019s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

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

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

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

See section 5.4 Supportive Care.

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

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to \u2264 grade 1 (or if >grade 1, event must be permanent and stable).

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

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n\u2022

\n

Withdrawal of the patient\u2019s consent (patient\u2019s decision to withdraw for any reason)

\n

\u2022

\n

Termination of the study by PrECOG

\n

\u2022

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\u2022

\n

Inability to comply with protocol

\n

\u2022

\n

Discretion of the investigator

\n

\u2022

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

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

See section 6 Measurement of Effect.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_6_1", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

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

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to \u2264 grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

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

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n\u2022

\n

\u2265 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\u2022

\n

\u2265 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\u2022

\n

\u2265 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be \u2265 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with \u2265 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n\u2018Cystic lesions\u2019 thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

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

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and \u2265 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n\u2022\n\u2022

\n

\u2022

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A \u2018positive\u2019 FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest \u201cincrease\u201d in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from \u201ctrace\u201d to\n\u201clarge\u201d, an increase in nodal disease from \u201clocalized\u201d to \u201cwidespread\u201d, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of \u201cnon-target\u201d lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient\u2019s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n\u201csymptomatic deterioration\u201d. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*\u2018Non-CR/Non-PD\u2019 is preferred over \u2018stable disease\u2019 for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

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

See section 6.1.4 Response Criteria.

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

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

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

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN \u2264 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

\u00a3

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

\u00a3

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: \u2264 4 weeks of randomization; if assessments required \u2264 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: \u2264 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered \u2018cured\u2019) should have HCV RNAPCR testing performed on \u2264 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until \u2264 grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n\u00a3 Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

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

See section 7 Study Parameters.

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

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

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

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin \u2264 4 weeks of randomization to protocol therapy:\n\u2022

\n

Medical history

\n

\u2022

\n

Assessment of baseline signs and symptoms

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\u2022

\n

PT with INR

\n

\u2022

\n

Urinalysis

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n\u2022 known or suspected past hepatitis B infection\n\u2022 blood transfusion(s) prior to 1990\n\u2022 current or prior IV drug users\n\u2022 current or prior dialysis\n\u2022 household contact with hepatitis B infected patient(s)\n\u2022 current or prior high-risk sexual activity\n\u2022 body piercing or tattoos\n\u2022 mother known to have hepatitis B\n\u2022 history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon \u2018curative\u2019 treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

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

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within \u2264 7 days of Cycle 1 Day 1.

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\u2022

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\u2022

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered \u2018cured\u2019) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\u2022

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\u2022

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

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

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n\u2022

\n

Physical examination

\n

\u2022

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\u2022

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\u2022

\n

Assessment of ECOG performance status

\n

\u2022

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to \u2264 grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\u2022

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\u2022

\n

CBC with differential and platelets

\n

\u2022

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\u2022

\n

Fasting Glucose

\n

\u2022

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

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

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until \u2264 grade 1\nor if the grade is >1, the event must be permanent and stable.\n\u2022

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\u2022

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\u2022

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n\u2022

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

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

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264 grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

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

See section 8 Drug Formulation and Procurement.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_8_1", + "text": "

See section 8.1 Everolimus.

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

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

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

Everolimus should be stored at room temperature between 20\u00b0C to 25\u00b0C (68\u00b0F to 77\u00b0F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n\u2022

\n

Everolimus/placebo dose may be taken with or without food.

\n

\u2022

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\u2022

\n

Vomited doses should not be replaced.

\n

\u2022

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n\u2022\n\u2022\n\u2022\n\u2022\n\u2022

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

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

See section 8.1.3 Handling, Dispensing and Administration.

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

The most common adverse reactions (incidence \u2265 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence \u2265 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

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

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n\u2022

\n

Amount received and placed in storage area.

\n

\u2022

\n

Amount currently in storage area.

\n

\u2022

\n

Label ID number or batch number.

\n

\u2022

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\u2022

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\u2022

\n

Amount transferred to another area for dispensing or storage.

\n

\u2022

\n

Non-study disposition (e.g., wasted, broken).

\n

\u2022

\n

Amount returned to manufacturer, if applicable

\n

\u2022

\n

Amount destroyed at study site, if applicable

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

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site\u2019s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

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

8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide\u2122) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2\u00b0-8\u00b0C (36\u00b0-46\u00b0F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex\u00ae Package Insert 1621903 Rev 12/11)\n\u2022 Remove the glass syringe barrel from tray and check that it is not damaged\n\u2022 Remove perforated patient record label from syringe\n\u2022 Peel open the safety needle outer packaging.\n\u2022 Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n\u2022 Twist to lock the needle to the luer container.\n\u2022 Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n\u2022 Remove excess gas from the syringe.\n\u2022 Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle \u2018bevel up\u2019 position is\norientated to the lever arm (Figure 3).\n\u2022 Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n\u2022 Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n\u2022 If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n\u2022 Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex\u00ae treatment groups,\nregardless of the investigator\u2019s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex\u00ae and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex\u00ae If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher\u2019s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

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

See section 9 Statistical Considerations.

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

See section 9.1 Primary Endpoint Analysis.

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

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

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

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

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

10 Adverse Event Reporting

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

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator\u2019s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n\u2022

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\u2022

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\u2022

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\u2022

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\u2022

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories \u2018Definite\u2019, \u2018probable\u2019 and \u2018possible\u2019 are considered study drug related.\nCategories \u2018not likely\u2019 and \u2018not related\u2019 are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until \u2264\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

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

10.2 Handling of Serious Adverse Events (SAEs)

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

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n\u2022

\n

results in death,

\n

\u2022

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\u2022

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\u2022

\n

results in persistent or significant disability/incapacity,

\n

\u2022

\n

is a congenital anomaly/birth defect,

\n

\u2022

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

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

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator\u2019s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM \u2013 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE\u2019s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

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

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

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

11 Administrative

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

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

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

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

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

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

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

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

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

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

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

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

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

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

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

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n\u2022\n\u2022\n\u2022

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

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

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n\u00b0C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

\u00b5M\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

\u00b5g

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

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

13 Appendix A: Eligibility Checklist\n\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n\u2264 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) \u2265 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) \u2265 1.5 x 10 /L and platelet count \u2265 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin \u2265 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin \u2264 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT \u2264 2.5 x ULN (\u2264 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine \u2264 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin \u2265 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol \u2264 300 mg/dL OR \u2264 7.75 mmol/L AND Fasting Triglycerides \u2264 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR \u2264 1.5. (Anticoagulation is allowed if target INR \u2264 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n\u2265 20 mm by chest x-ray, as \u2265 10 mm with CT scan, or \u2265 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n\u2022 Bisphosphonates, Zometa or Xgeva for bone metastases\n\u2022 Hormonal therapy (e.g., AI, Tamoxifen)\n\u2022 a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\uf0fc

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient\u2019s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n\u2022

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\u2022

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\u2022

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\u2022

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\u2022

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\u2022

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

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

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

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

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John\u2019s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John\u2019s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John\u2019s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA\u2019s\n\u201cGuidance for Industry, Drug Interaction Studies\u201d, the University of Washington\u2019s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

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

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient\u2019s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

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

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

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

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

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

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex\u00ae) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO\u2019Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses\u2019 Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator\u2019s Statement\n1.

\n

I have carefully read this protocol entitled \u201cRandomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014\u201d (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

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

See section 20 Investigator's Statement.

", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "NCT01797120_PROTOCOL", + "label": "PrE0102: Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant plus Everolimus", + "description": "Version 2.0, January 22 2014 protocol document for PrECOG study PrE0102 (NCT01797120).", + "language": { + "id": "Code_DocLang_1", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_DocType_1", + "extensionAttributes": [], + "code": "C70817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Protocol", + "instanceType": "Code" + }, + "templateName": "PrECOG Protocol Template", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_DocStatus_1", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_DocVersion_1", + "extensionAttributes": [], + "name": "PROTOCOL_VERSION_DATE", + "label": "Protocol Version Date", + "description": "Date of the final protocol version", + "type": { + "id": "Code_DocDate_1", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2014-01-22", + "geographicScopes": [], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "pi-fix-bc-props-specs-in-usdm" +} diff --git a/output/json/NCT01797120_narrative_test.json b/output/json/NCT01797120_narrative_test.json new file mode 100644 index 0000000..3e91ce6 --- /dev/null +++ b/output/json/NCT01797120_narrative_test.json @@ -0,0 +1,3293 @@ +{ + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "

See section 1 Introduction.

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

Endocrine therapy represents the foundation of treatment for hormone-receptor\npositive metastatic and locally advanced breast cancer. Multiple compounds in\nvarying classes exist, and those most widely used include the selective estrogen\nreceptor modulators (SERMs), aromatase inhibitors (AIs), and the selective estrogen\nreceptor down-regulators (SERDs). Although the utility of these drugs is well\nestablished, as many as 50% of women with hormone-receptor positive breast cancer\nwill fail to respond to endocrine treatment (de novo resistance). Moreover, those who\ndo respond will inevitably develop acquired resistance.1 Resistance to endocrine\ntherapy remains a serious clinical challenge.\nBasic scientific research into the mechanisms surrounding endocrine therapy\nresistance has been particularly intense in recent years. Advances in this area of\ninvestigation are driving the development of novel treatments and therapeutic\nstrategies. For example, various signal transduction pathways, when activated, have\nbeen demonstrated to allow breast cancer cells to escape the effect of endocrine\ntherapy. The Protein Kinase B (Akt/PKB), a downstream target in the PI3 kinase\nsignaling pathway appears to play a vital role in drug resistance.2 Several studies\nidentify a close association between aberrant Akt signaling and tamoxifen resistance.3\nHigh levels of Akt activity confer resistance to the aromatase inhibitor letrozole and\nthe selective estrogen receptor down-regulator fulvestrant.4 This Akt-induced\nresistance does not appear to be secondary to failure of these agents to inhibit the\nestrogen receptor α activity, but instead may lead to altered cell cycle and apoptotic\nresponse.5 Clinically, Akt/PKB activation in breast cancer appears to predict an\ninferior outcome among patients treated with endocrine therapy.6\nmTOR, mammalian target of rapamycin, is a cytoplasmic protein kinase that acts as a\ncentral regulator of many biological processes involved in cellular proliferation,\nangiogenesis and metabolism. mTOR is a key protein involved in control and\nregulation of the cell’s translational machinery through multiple mechanisms including\nby directly activating or inhibiting ribosomal activity.7 mTOR is a key intracellular point\nof convergence for a number of cellular signaling pathways, including Akt/PKB.8\nmTOR lies downstream to Akt/PKB, and targeted inhibition of this protein has\nemerged as an important therapeutic strategy in clinical oncology. Inhibition of mTOR\nactivity has been shown to restore tamoxifen response in breast cancer cells with\naberrant Akt activity.9\nEverolimus is an orally bioavailable inhibitor of the mTOR pathway. Combination\ntreatment with everolimus and either letrozole or fulvestrant has been shown to\nreverse Akt-mediated endocrine therapy resistance and restore responsiveness to\nanti-estrogens in preclinical studies.5 These observations formed the rationale leading\nto the Phase I clinical trial evaluating the combination of everolimus and letrozole in\nwomen previously treated with letrozole ≥ 4 months without objective response (e.g.,\nstable or progressive disease). Eighteen postmenopausal female patients with\nadvanced HR+ breast cancer were treated with letrozole 2.5 mg/day and everolimus\nat 5 mg/day (cohort 1) or 10 mg/day (cohort 2).10 Overall the combination was well\ntolerated and toxicities were manageable and consistent with that expected for

\n

everolimus monotherapy. The results suggest antitumor activity for this combination\nwithout Pharmacokinetic (PK) interactions.\nThis study will examine the efficacy and tolerability of the combination of fulvestrant\nand everolimus for the treatment of postmenopausal metastatic breast cancer\nresistant to an aromatase inhibitor.

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

Breast cancer is the most commonly diagnosed malignancy in women worldwide. In\nthe United States, an estimated 230,480 new cases of invasive breast cancer were\ndiagnosed in 2011, with 39,520 breast cancer deaths.11 Despite the recent advances\nin breast cancer therapy, 40-80% of women with node-positive disease and up to\n30% of women with node-negative disease at diagnosis will relapse. When distant\nmetastases occur, the prognosis remains poor with a median survival of 18 to 36\nmonths from time of recurrence. Among the 60-70% of women with hormone-receptor\npositive breast cancer, 40-60% of them will benefit from endocrine therapy. Endocrine\ntherapy has shown to yield similar survival rates in hormone-sensitive disease as\ncompared to chemotherapy; although response rates are lower and responses\ndevelop more slowly. Endocrine therapy is considerably less toxic than\nchemotherapy, and is therefore the preferred treatment option for patients with\nhormone-receptor (HR)-positive disease.12,13 Chemotherapy is generally indicated in\nHR-negative disease, in cases unresponsive to endocrine therapy, or when extensive\nmetastases require rapid tumor response.14

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

Several endocrine therapies are available for the treatment of metastatic breast\ncancer in postmenopausal women, including selective estrogen-receptor modulators\n(SERMs), aromatase inhibitors (AIs), progestins, androgens, and most recently the\nselective estrogen receptor downregulators (SERDs- e.g., fulvestrant). Tamoxifen\nwas generally regarded as a standard option in HR-positive disease for adjuvant\ntherapy, and for first-line therapy of metastatic disease in postmenopausal women.\nWithin the past decade, however, the AIs (letrozole, anastrozole, exemestane) have\nsupplanted tamoxifen as the preferred choice for adjuvant therapy and metastatic\ndisease in postmenopausal women.15,16 There is therefore a need to develop more\neffective endocrine therapies for patients with AI-resistant disease, and to enhance\nthe effectiveness of existing endocrine therapies that have demonstrated efficacy in\nAI-resistant disease.

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

Fulvestrant (Faslodex®, AstraZeneca Pharmaceuticals LP, Wilmington, DE) has\nseveral unique characteristics. It is the first drug which acts as a pure estrogen\nreceptor (ER) antagonist without known agonist effects. It competitively binds to the\nERs with an approximately 100 times greater affinity than that of tamoxifen.\nFulvestrant promotes the degradation of ERs and subsequently prevents ERmediated gene transcription. Two studies that led to the approval of fulvestrant were\nperformed in postmenopausal women with HR-positive metastatic breast cancer who\nhad progressive disease after tamoxifen therapy. These trials compared fulvestrant

\n

(250 mg IM injection monthly) with anastrozole (1 mg PO daily) (Table 1-0).17,18 The\nprimary endpoint for both studies was time to disease progression (TTP), which was\nsimilar between the two treatment arms (5.4 versus 3.4 months in the North American\ntrial, and 5.5 versus 5.1 months in the European trial). Secondary endpoints were\nalso comparable. The response rate for fulvestrant was 17-20% (versus 15.7-17.5%\nfor anastrozole), Clinical Benefit Rate (CBR) was 42-45% (versus 36-45% for\nanastrozole), median duration of response was 15-19 months (versus 11-15 months\nfor anastrozole), and median time to disease progression (TTP) was 5.5 months\n(versus 3.4-5.1 months for anastrozole). Further subgroups analyses confirm the\nclinical activity of fulvestrant in both visceral and non-visceral metastatic disease as\ncompared with anastrozole.19 These trials led to the approval of Faslodex®\n(fulvestrant) Injection for “…the treatment of hormone-receptor positive metastatic\nbreast cancer in postmenopausal women with disease progression following\nantiestrogen therapy”.\nTable 1-0\nPhase III Studies Comparing Fulvestrant and Anastrozole after TamoxifenFailure in Postmenopausal Women with HR-Positive Metastatic Breast Cancer\nNorth American Trial

\n

European Trial

\n

Treatment Group:

\n

Fulvestrant

\n

Anastrozole

\n

Fulvestrant

\n

Anastrozole

\n

No. of Patients:

\n

Overall RR (%):

\n

17.5

\n

17.5

\n

20.7

\n

15.7

\n

CR (%):

\n

4.9

\n

3.6

\n

4.5

\n

1.7

\n

PR (%):

\n

12.6

\n

13.9

\n

16.2

\n

14.0

\n

42.2

\n

36.1

\n

44.6

\n

45.0

\n

24.8

\n

18.6

\n

23.9

\n

29.3

\n

Median TTP (months):

\n

5.4

\n

3.4

\n

5.5

\n

5.1

\n

Median Duration of Response\n(months):

\n

19.0

\n

10.8

\n

15.0

\n

14.5

\n

Withdrawal Rate (%):

\n

2.5

\n

2.6

\n

3.2

\n

1.3

\n

Clinical Benefit Rate (%):\nSD for more than 24 weeks (%):

\n

Fulvestrant has also been compared with tamoxifen as first line therapy in a Phase III\ntrial that included 587 postmenopausal women with HR-positive metastatic breast\ncancer, but proved to be no more effective than tamoxifen in this setting.20 When\ncomparing fulvestrant with tamoxifen, the objective response rate (34% versus 32%)\nand clinical benefit rate (57% versus 62%) were similar.

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

Several trials have evaluated the role of fulvestrant in AI-resistant disease, as\nsummarized in Table 1-1.

\n

Table 1-1\nPhase II or III Trial of Fulvestrant in AI-Resistant Disease\nReference\nIngle, 2006

\n

Treatment

\n

No.

\n

RR

\n

CBR

\n

Median TTP

\n

Fulvestrant

\n

14%

\n

25%

\n

3.0 mo.

\n

Fulvestrant

\n

5%

\n

37%

\n

3.5 mo.

\n

Fulvestrant

\n

7%

\n

23%

\n

3.7 mo.

\n

Exemestane

\n

7%

\n

19%

\n

3.7 mo.

\n

Perey, 2007

\n

Chia, 2008

\n

The Clinical Benefit Rate (CBR) for patients with AI-resistant disease is approximately\n20-30%, and median TTP is approximately 3.5 months. In the EFECT trial reported by\nChia et al, patients who had progressive disease after treatment with a non-steroidal\nAI (anastrozole, letrozole) were randomized to fulvestrant or the steroidal aromatase\ninhibitor exemestane. In contrast to most other trials that utilized a single 250 mg\nmonthly dose based upon the original pharmacokinetic studies,23 patients in the\nEFECT trial received a 500 mg loading dose on day 1, then 250 mg on day 15 and 28\n(then every 4 weeks thereafter) based upon recent evidence that this dose/schedule\nmay more rapidly achieve therapeutic blood levels. There was no significant\ndifference in CBR between the two treatment arms. Nevertheless, the EFECT trial\nconfirmed the effectiveness of fulvestrant previously reported in other smaller trials of\nfulvestrant in AI-resistant disease.\nPrevious trials had demonstrated that a dose of 125 mg was less effective than the\n250 mg monthly dose.16,20 Based upon evidence that dosing schedules higher than\nthe 250 mg monthly dose may produce greater clinical benefit, several trials\nevaluated alternative dosing schedules (similar to that used in the EFECT trial),\nincluding FINDER I (NCT00305448), FINDER II (NCT00313170), and CONFIRM\n(NCT00099437).

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

Fulvestrant has demonstrated activity when used as first, second, or third line\nendocrine therapy, making it an attractive therapy for combination with other agents.\nIn addition, it is commonly reserved for use following disease progression on AI\ntherapy. The loading dose schedule employed in the EFECT trial will be used in this\nstudy taking advantage of the known dose-response effect observed for fulvestrant,\nthe more rapid achievement of therapeutic blood levels, the extensive efficacy and\nsafety experience with this schedule, and because it appears to be emerging as the\npreferred schedule for fulvestrant based upon the results of ongoing and recently\ncompleted clinical trials.\nThe recently reported CONFIRM trial compared fulvestrant dosing of 250 mg every\n28 days (the previously FDA-approved dose) with 500 mg on days 1, 14, 28 and\nevery 28 days thereafter (the current FDA-approved dose).24 The study demonstrated\nthat the higher dose was more effective. Median time to progression (TTP) was 6.5\nmonths with the higher dose compared with 5.5 months with the lower dose (HR 0.8,\np=0.006). The CBR was 45%, with the high dose as compared to 39.6% with the low\ndose arm (odds ratio 1.28, p= 0.10). In the subgroup of patients who had

\n

relapsed/progressed on an aromatase inhibitor (the population targeted in this study),\nmedian TTP was 5.4 months with the high-dose arm, and 4.1 months on the standard\narm (with CBRs of 36% and 32% respectively). We will therefore use the high-dose\nregimen as utilized in the CONFIRM trial.24

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

Everolimus (RAD001) is a novel oral derivative of rapamycin that is an m-TOR\ninhibitor.\nEverolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation. Everolimus is approved in Europe and other global\nmarkets (trade name: Certican®) for cardiac and renal transplantation, and in the\nUnited States (trade name: Zortress®) for the prevention of organ rejection of kidney\ntransplantation.\nEverolimus was developed in oncology as Afinitor® and was approved for advanced\nrenal cell carcinoma (RCC) in 2009. In 2010, Afinitor® received United States (US)\napproval for patients with subependymal giant cell astrocytoma (SEGA) associated\nwith tuberous sclerosis (TS). Everolimus is also available as Votubia® in the\nEuropean Union (EU) for patients with SEGA associated with TS. Afinitor® was\napproved for “progressive pancreatic neuroendocrine tumor (PNET) in patients with\nunresectable, locally advanced, or metastatic disease” in 2011 in various countries,\nincluding the US and Europe.\nIn 2012 Afinitor® received approval for the treatment of postmenopausal women with\nadvanced hormone receptor-positive, HER2-negative breast cancer (advanced HR+\nBC) in combination with exemestane, after failure of treatment with letrozole or\nanastrozole. Furthermore in 2012, Afinitor® received approval for the treatment of\npatients with Tuberous Sclerosis Complex (TSC) who have renal angiomyolipoma not\nrequiring immediate surgery.\nEverolimus is being investigated as an anticancer agent based on its potential to act:\n•

\n

Directly on the tumor cells by inhibiting tumor cell growth and proliferation.

\n

\n

Indirectly by inhibiting angiogenesis leading to reduced tumor vascularity (via\npotent inhibition of tumor cell HIF-1 activity, VEGF production and VEGF-induced\nproliferation of endothelial cells). The role of angiogenesis in the maintenance of\nsolid tumor growth is well established, and the mTOR pathway has been\nimplicated in the regulation of tumor production of proangiogenic factors as well\nas modulation of VEGFR signaling in endothelial cells.

\n

At weekly and daily schedules and at various doses explored, everolimus is generally\nwell tolerated. The most frequent adverse events (rash, mucositis, fatigue and\nheadache) associated with everolimus therapy are manageable. Non-infectious\npneumonitis has been reported with mTOR inhibitors but is commonly low-grade and\nreversible.

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

At cellular and molecular levels, everolimus acts as a signal transduction inhibitor.\nEverolimus selectively inhibits mTOR (mammalian target of rapamycin), specifically

\n

targeting the mTOR-raptor signal transduction complex. mTOR is a key and highly\nconserved serine-threonine kinase which is present in all cells and is a central\nregulator of protein synthesis and ultimately cell growth, cell proliferation,\nangiogenesis and cell survival. mTOR is the only currently known target of\neverolimus.25\nmTOR is downstream of PI3K/AKT pathway, a pathway known to be dysregulated in\na wide spectrum of human cancers (e.g. through loss/mutation of the PTEN negative\nregulator; through PI3K mutation/amplification; through AKT/PKB overexpression/\noveractivation; through modulation of TSC1/TSC2 tumor suppressors). In addition,\nactivation of the PI3K/AKT/mTOR pathway is associated with worsening prognosis\nthrough increased aggressiveness, resistance to treatment and progression.\nThe main known functions of mTOR include the following:7,25\n•\n•\n•

\n

•\n•

\n

mTOR functions as a sensor of mitogens, growth factors and energy, and nutrient\nlevels, facilitating cell-cycle progression from G1 to S phase in appropriate growth\nconditions.\nThe PI3K-mTOR pathway itself is frequently activated in many human cancers,\nand oncogenic transformation may sensitize tumor cells to mTOR inhibitors.\nThrough inactivating eukaryotic initiation factor 4E binding proteins (4E-BP1) and\nactivating the 40S ribosomal S6 kinases (e.g., p70S6K1), mTOR regulates protein\ntranslation, including the HIF-1 proteins. Inhibition of mTOR is expected to lead to\ndecreased expression of HIF-1.\nThe activation of mTOR pathway is involved in the production of pro-angiogenic\nfactors (i.e., VEGF) and inhibition of endothelial cell growth and proliferation.\nThe regulation of mTOR signaling is complex and involves positive regulators,\nsuch as AKT that phosphorylate and inactivate negative regulators such as the\nTuberous Sclerosis Complex (TSC1/TSC2).

\n

mTOR is represented by two structurally and functionally distinct multiprotein\nsignaling complexes, mTORC1 (mTOR complex 1, rapamycin sensitive) and\nmTORC2 (mTOR complex 2, rapamycin insensitive).26\nmTORC1 is mainly activated via the PI3 kinase pathway through AKT (also known as\nPKB, protein kinase B) and the tuberous sclerosis complex (TSC1/TSC2).7 Activated\nAKT phosphorylates TSC2, which leads to the dissociation of TSC1/TSC2 complex,\nthus inhibiting the ability of TSC2 to act as a GTPase activating protein. This allows\nRheb, a small G-protein, to remain in a GTP bound state and to activate mTORC1.\nAKT can also activate mTORC1 by PRAS40 phosphorylation, thereby relieving the\nPRAS40-mediated inhibition of mTORC1.27,28\nmTORC2 (mTOR complex 2) is activated through a currently unknown mechanism,\npossibly by receptor tyrosine kinase (RTK) signaling.27 It has been suggested that\nmTORC2 phosphorylates and activates a different pool of AKT that is not upstream of\nmTORC1. PHLPP phosphatase plays a role of a negative regulator. mTORC2 is\nrapamycin insensitive and is required for the organization of the actin cytoskeleton.26\nmTORC1-mediated signaling is subject to modulation by the macrocyclic lactone\nrapamycin and its derivatives, such as everolimus. Once these agents bind to the 12\nkDa cytosolic FK506-binding protein immunophilin FKBP12, the resulting rapamycinFKBP12 complexes bind to a specific site near the catalytic domain of mTORC1 and

\n

inhibit phosphorylation of mTOR substrates. As a consequence, downstream\nsignaling events involved in regulation of the G1 to S-phase transition are inhibited.\nThis mechanism is thought to be responsible for the immunosuppressive effects of\nrapamycin as well as its putative antineoplastic activity.29 As many cancers are\ncharacterized by dysregulation of G1 transit (for example, overexpression of cyclin or\ncyclin-dependent kinases), inhibition of mTOR becomes an intriguing target for\ninducing cytostasis.7\n1.4.1.1

\n

Preclinical Studies

\n

Everolimus acts as an inhibitor of cytokine and growth-factor-dependent proliferation\nof cells. The only currently known target of everolimus is mTOR, a key regulatory\nprotein affecting cell growth.25 Everolimus exerts its activity through high affinity\ninteraction with an intracellular receptor protein, the immunophilin FKBP12. The\nFKBP12/everolimus complex subsequently interacts with the mTOR protein kinase,\ninhibiting downstream signaling events involved in regulation of the G1 to S-phase\ntransition.\nThe main known functions of mTOR include:\n•

\n

Function as a sensor of mitogens, growth factors, energy and nutrient levels,\nfacilitating cell-cycle progression from G1 - S phase in appropriate growth\nconditions.

\n

\n

Regulation of protein synthesis important for tumor cell proliferation and\nangiogenesis through inactivating eukaryotic initiation factor 4E binding proteins\nand activating the 40S ribosomal S6 kinases (e.g. p70S6K1). For example,\nactivation of the mTOR pathway leads to a) increased production of proangiogenic factors (e.g. VEGF) in tumors b) tumor, endothelial and smooth\nmuscle cell growth and proliferation.

\n

The PI3K-mTOR pathway itself is frequently activated in many human cancers, and\noncogenic transformation may sensitize tumor cells to mTOR inhibitors. The\nregulation of mTOR signaling is complex and involves positive regulators such as\nAKT that phosphorylate and inactivate negative regulators such as the Tuberous\nSclerosis Complex (TSC1/TSC2). In summary, mTOR has pleiotropic functions;\nhence, the activities of everolimus may vary depending upon cell type.\nThe mTOR inhibitory activities presumably contribute to the anti-proliferative activity\nof everolimus against tumor cell lines. However, everolimus may also exert an\nantitumor effect through the inhibition of angiogenesis. Indeed, both rapamycin and\neverolimus potently inhibit proliferation of endothelial cells and have antiangiogenic\nactivity in vivo.30,31 Exactly which molecular determinants predict responsiveness of\ntumor cells to everolimus is still unclear. Currently, the activation status of the\nPI3K/AKT/mTOR/p70 S6K pathway may be indicative of responsiveness to\nrapamycins. For example, pre-clinically, loss of PTEN or constitutive/hyper-activation\nof AKT has been suggested to sensitize tumors to the effects of inhibition of\nmTOR.25,31 Also, clinically, it has been suggested that high p70S6K activation in\nbaseline Glioblastoma Multiforme (GBM) tumor samples may predict a patient\npopulation more likely to derive benefit from mTOR inhibition.32

\n

Everolimus is a highly specific inhibitor of mTOR, which is afforded by high-affinity\nbinding to the protein FKBP-12 (IC50 of 5.3 nM) similar to that of rapamycin. Similar\npotency of rapamycin and everolimus was also demonstrated at forming the mTOR/\nFKBP-12 tertiary complex in vitro. Specificity was demonstrated by a lack of inhibitory\nactivity against 10 other protein kinases at concentrations up to 10 μM.\nThe anti-proliferative effects of everolimus were investigated in a mixed panel of 48\ndifferent tumor cell lines (including breast, colon, epidermoid, glioblastoma, lung,\nmelanoma, prostate and renal). The majority of tumor cell lines were highly sensitive\nto the anti-proliferative effects of everolimus while a few others appeared intrinsically\ninsensitive, or ‘resistant’ (IC50 range 0.2 to 4125 nM).33 The median IC50 value of the\n48 cell lines was 0.5 nM. Similar findings have been observed for rapamycin.34\nEverolimus was also shown to have activity in human pancreatic neuroendocrine\ncells, where induction of apoptosis was reported,35 as well as in acute myeloid\nleukemia cells,36 mantle cell lymphoma cells37, adult T-cell leukemia cells38, diffuse\nlarge B cell lymphoma cells,39 pancreatic tumor cells,40 ovarian cancer cells,31,41 and\nhepatocellular carcinoma cells.42\nEverolimus was also evaluated in a clonogenic assay using cells derived from 81\npatient derived tumor xenografts never cultured in vitro (11 human tumor types with 3\nto 24 tumors each: bladder, colon, gastric, Non-Small Cell Lung Cancer (NSCLC),\nSmall Cell Lung Cancer (SCLC), breast, ovary, pancreatic, renal, melanoma, and\npleuramesothelioma). Everolimus inhibited colony formation in a concentrationdependent manner (mean IC50: 175 nM). In addition, normal hematopoetic stem cells\nwere found to be relatively insensitive to everolimus, with an IC50 about 15 fold higher\nthan the tumor lines.\nEverolimus was effective and well tolerated against subcutaneous (s.c.) tumors\nestablished from a variety of tumor cell lines of diverse histotypes (NSCLC,\npancreatic, colon, melanoma, epidermoid), including a PgP170-overexpressing, multidrug resistant tumor line. Typically, the antitumor activity of everolimus was that of\nreduction of tumor growth rates rather than producing regressions or stable disease\nalthough, in the case of A549 and NCI-H596 lung and ARJ42 pancreatic tumors,\nregressions could be obtained. These effects occurred within the dose range of 2.5 to\n10 mg/kg, P.O., once per day. The change in tumor volume of the treated mice\ndivided by the change in tumor volume of control mice (T/C) typically ranged from\napproximately 15 to 50% at optimal doses. A marked loss of antitumor activity\noccurred when tumor-bearing mice were treated with everolimus once per week, but\nimproved moderately with twice per week dosing. Antitumor activity of everolimus has\nalso been demonstrated in mouse models of ovarian,31 breast,43,44 and\ngastrointestinal stromal tumors.45

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

In safety pharmacology studies, everolimus was devoid of relevant effects on vital\norgan functions including the cardiovascular, respiratory and nervous systems.\nEverolimus had no effects on QT interval. Furthermore, everolimus showed no\nantigenic potential. Although everolimus passes the blood-brain barrier, there was no\nindication of relevant changes in the behavior of rodents, even after single oral doses\nup to 2000 mg/kg or after repeated administration at up to 40 mg/kg/day.

\n

The preclinical safety profile of everolimus was assessed in mice, rats, minipigs,\nmonkeys, and rabbits. The major target organs were male and female reproductive\nsystems (testicular tubular degeneration, reduced sperm content in epididymides and\nuterine atrophy) in several species; lungs (increased alveolar macrophages) in rats\nand mice; and eyes (lenticular anterior suture line opacities) in rats only. Minor kidney\nchanges were seen in the rat (exacerbation of age-related lipofuscin in tubular\nepithelium, increases in hydronephrosis) and mouse (exacerbation of background\nlesions). There was no indication of kidney toxicity in monkeys or minipigs.\nGenotoxicity studies covering relevant genotoxicity endpoints showed no evidence of\nclastogenic or mutagenic activity. Administration of everolimus for up to 2 years did\nnot indicate any oncogenic potential in mice and rats up to the highest doses,\ncorresponding respectively to 4.2 and 0.2 times the estimated clinical exposure. In\nreproduction studies, everolimus was toxic to the conceptus in rats and rabbits, and\nwas considered potentially teratogenic in rats. It is therefore recommended that\nwomen of childbearing potential should use effective contraceptive measures during\nthe entire treatment period and for 8 weeks thereafter.\nMore pre-clinical information is provided in the Investigator’s Brochure.

\n

1.4.3\n1.4.3.1

\n

Clinical Experience

\n

Everolimus Pharmacokinetics

\n

Everolimus is rapidly absorbed with a median tmax of 1-2 hours. The steady-state\nAUC0-τ is dose-proportional over the dose range between 5 to 70 mg in the weekly\nregimen and 5 and 10 mg in the daily regimen. Steady-state was achieved within two\nweeks with the daily dosing regimen. Cmax is dose-proportional between 5 and 10 mg\nfor both the weekly and daily regimens. At doses of 20 mg/week and higher, the\nincrease in Cmax is less than dose proportional. In healthy subjects, high fat meals\nreduced systemic exposure to everolimus 10 mg (as measured by Area Under the\nConcentration Time-Curve (AUC)) by 22% and the peak plasma concentration Cmax\nby 54%. Light fat meals reduced AUC by 32% and Cmax by 42%. Food, however, had\nno apparent effect on the post absorption phase concentration-time profile.\nThe blood-to-plasma ratio of everolimus, which is concentration-dependent over the\nrange of 5 to 5,000 ng/mL, is 17% to 73%. The amount of everolimus confined to the\nplasma is approximately 20% at blood concentrations observed in cancer patients\ngiven everolimus 10 mg/day. Plasma protein binding is approximately 74% both in\nhealthy subjects and in patients with moderate hepatic impairment.\nEverolimus is a substrate of CYP3A4 and a substrate and moderate inhibitor of PgP.\nFollowing oral administration, everolimus is the main circulating component in human\nblood and is considered to contribute the majority of the overall pharmacologic\nactivity. No specific excretion studies have been undertaken in cancer patients;\nhowever, data available from the transplantation setting found the drug to be mainly\neliminated through the feces. There was a significant correlation between AUC0-τ and\npre-dose trough concentration at steady-state on the daily regimen. The mean\nelimination half-life of everolimus is approximately 30 hours.\nAppendix C lists examples of clinically relevant CYP3A4 inhibitors and inducers.

\n

Please refer to Section 5.3.5 for more information on the concomitant use of CYP3A4\ninhibitors/inducers and other medications.\nMore information on everolimus pharmacokinetics is provided in the Investigator’s\nBrochure.\n1.4.3.2

\n

Everolimus Pharmacodynamic Studies

\n

Pharmacokinetic/pharmacodynamic modeling based on inhibition of the biomarker\np70S6 kinase 1 [S6K1] in peripheral blood mononuclear cells [PBMC]) suggests that\n5-10 mg daily should be an adequate dose to produce a high-degree of sustained\ntarget inhibition ([Study C2101]/[Study 2102]).46 Molecular changes in tumor were\nevaluated through serial biopsy before and during treatment. Biopsy on treatment\ntook place in week 4 (pharmacokinetic steady-state). All patients underwent a 24hour post-dose biopsy. Patients following the weekly regimen had a further biopsy on\nDay 4 or 5 of the same week. Molecular activity was measured by\nimmunohistochemistry. In the absence of a reliable technique for measuring mTOR\nphosphorylation, the phosphorylation status of downstream markers S6 and eIF4G,\nfor which reliable antibodies exist, was selected as reflecting the immediate\npharmacodynamic effect of everolimus. Also measured were changes in the\nphosphorylation status of upstream AKT and the proliferation index Ki67. Fifty-five\npatients were treated and the results revealed a dose and schedule dependent\ninhibition of the mTOR pathway with a near complete inhibition of pS6 and pelF-4G at\nthe 10 mg/day and 50 mg/wk schedules. In addition, pAKT was upregulated in 50% of\nthe treated tumors. In the daily schedule, there was a correlation between everolimus\nplasma trough concentrations and inhibition of peIF4G and p4E-BP1. There was\ngood concordance of mTOR pathway inhibition between skin and tumor. [Study\nC2107].47\nMore information on everolimus pharmacodynamics is provided in the Investigator’s\nBrochure (IB).\n1.4.3.3

\n

Clinical Experience with Everolimus

\n

Everolimus has been in clinical development since 1996 as an immunosuppressant in\nsolid organ transplantation and was approved in Europe in 2003 under the trade\nname Certican®, for the prevention of organ rejection in patients with renal and\ncardiac transplantation. It is also approved in the United States (trade name:\nZortress®) for the prevention of organ rejection of kidney transplantation. Additional\nnon-oncologic indications currently being explored are wet age-related macular\ndegeneration (AMD) and autosomal dominant polycystic kidney disease (ADPKD).\nClinical experience of everolimus in the transplant indication is summarized in a\nseparate Investigator’s Brochure.\nIn oncology, everolimus has been in clinical development since 2002 for patients with\nvarious hematologic and non-hematologic malignancies as a single agent or in\ncombination with antitumor agents. Please note that safety pharmacology and\ntoxicology studies as well as some human pharmacology studies which have been\nconducted in support of the transplant indication, are described in the oncology IB\ndue to the relevance of these data for the oncology indication. Malignancies that are\ncurrently being evaluated in Novartis sponsored studies include the following:

\n

metastatic renal cell carcinoma (mRCC), breast cancer, gastroenteropancreatic\nneuroendocrine tumors (GEP-NET), mantle cell lymphoma and diffuse large B cell\nlymphoma (DLBCL), hepatocellular cancer (HCC), gastric cancer, and lung cancer. In\naddition, treatment of patients with Tuberous Sclerosis Complex (TSC) associated\nsubependymal giant cell astrocytoma (SEGA) and Angiomyolypoma is also being\nevaluated. Colorectal cancer (CRC) is no longer being evaluated.\nEverolimus 2.5 mg, 5 mg and 10 mg tablets were approved under the trade name\nAfinitor® for patients with advanced renal cell carcinoma in the US, EU and several\nother countries and is undergoing registration in other regions worldwide. Recent\napproval was granted in the US for the treatment of patients with subependymal giant\ncell astrocytoma (SEGA) associated with tuberous sclerosis (TS) who require\ntherapeutic intervention but are not candidates for curative surgical resection.\nPhase I dose escalating studies, exploratory Phase I/II studies with everolimus as\nsingle agent or in combination with other anti-cancer agents, Phase II/III studies of\neverolimus in indications, and Phase III double-blind studies are contributing to the\nextensive database.\nApproximately 18,730 cancer patients have been treated with everolimus as of 30Sep-2011:\n•\n•\n•\n•

\n

9,528 patients in Novartis-sponsored clinical trials\n2,559 patients in the individual patient supply program\n6,638 in investigator-sponsored studies.\nIn addition, healthy volunteer subjects have participated in the clinical\npharmacology studies as described in Section 1.4.3.1.

\n

As of 30-Sep-2011, there are a total of 11 Phase III trials ongoing in the indications\nmRCC (1), advanced NET (2), breast cancer (3), TSC (2), DLBCL (1), gastric cancer\n(1) and HCC (1).\nRecent approvals of everolimus (Afinitor®) were based upon a Phase III, international,\nmulticenter randomized, double-blind, placebo-controlled study [C2240] in patients\nwith metastatic renal cell carcinoma (mRCC) whose disease had progressed despite\nprior treatment with VEGFR-TKI (vascular endothelial growth factor receptor tyrosine\nkinase inhibitor) therapy. Progression-free survival (PFS) assessed via a blinded,\nindependent central review, was the primary endpoint. Secondary endpoints included\nsafety and objective tumor response.\nIn the pivotal, Phase III study [C2240], which included patients with advanced renal\ncell carcinoma, the most common adverse reactions (incidence ≥ 10%) were\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, pneumonitis, cough, peripheral edema, infections, dry skin, epistaxis,\npruritus, and dyspnea. The most common grade 3-4 adverse reactions (incidence ≥\n2%) were infections, stomatitis, fatigue, and pneumonitis. Non-infectious pneumonitis\nis a class effect of rapamycin derivatives, including everolimus and some of these\ncases have been severe and on rare occasions, fatal outcomes have been observed.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral

\n

infections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.\nThe most common laboratory abnormalities (incidence ≥ 50%) were anemia,\nhypercholesterolemia, hypertriglyceridemia, hyperglycemia, lymphopenia, and\nincreased creatinine. The most common grade 3/4 laboratory abnormalities\n(incidence ≥ 3%) were lymphopenia, hyperglycemia, anemia, hypophosphatemia, and\nhypercholesterolemia. Deaths due to acute respiratory failure (0.7%), infection\n(0.7%), and acute renal failure (0.4%) were observed on the everolimus arm. The\nrates of treatment-emergent adverse reactions resulting in permanent discontinuation\nwere 7% and 0% for the everolimus and placebo treatment groups, respectively.\nSafety data from study [C2240] are described in detail in Section 1.4.3.3.\nOverall, safety data available from completed, controlled and uncontrolled studies are\nconsistent with the aforementioned findings of the Phase III trial. Everolimus is\ngenerally well tolerated at weekly and daily dose schedules. The safety profile is\ncharacterized by manageable adverse events (AEs). These AEs are generally\nreversible and non-cumulative.\nFurther detailed information regarding everolimus clinical development, safety and\nefficacy is provided in the Investigator’s Brochure.\n1.4.3.4

\n

Clinical Experience with Everolimus in Metastatic Breast Cancer\nResistant to Non-Steroidal Aromatase Inhibitors

\n

Based on data indicating that resistance to endocrine therapy in breast cancer is\nassociated with activation of the mammalian target of rapamycin (mTOR) intracellular\nsignaling pathway, a Phase 3, randomized trial (BOLERO2) compared the steroidal\naromatase inhibitor exemestane (25 mg PO daily) plus either everolimus (10 mg PO\ndaily) or a placebo (randomly assigned in a 2:1 ratio) in 724 patients with HR-positive\nadvanced breast cancer who had recurrence or progression while receiving previous\ntherapy with a nonsteroidal aromatase inhibitor in the adjuvant setting or to treat\nadvanced disease (or both). The primary end point was progression-free survival.\nSecondary end points included survival, response rate, and safety. A preplanned\ninterim analysis was performed by an independent data and safety monitoring\ncommittee after 359 progression-free survival events were observed. Baseline\ncharacteristics were well balanced between the two study groups. The median age\nwas 62 years, 56% had visceral involvement, and 84% had hormone-sensitive\ndisease. Previous therapy included letrozole or anastrozole (100%), tamoxifen (48%),\nfulvestrant (16%), and chemotherapy (68%). The most common grade 3 or 4 adverse\nevents were stomatitis (8% in the everolimus-plus-exemestane group vs. 1% in the\nplacebo-plus-exemestane group), anemia (6% vs. <1%), dyspnea (4% vs. 1%),\nhyperglycemia (4% vs. <1%), fatigue (4% vs. 1%), and pneumonitis (3% vs. 0%). At\nthe interim analysis, median progression-free survival was 6.9 months with\neverolimus plus exemestane and 2.8 months with placebo plus exemestane,\naccording to assessments by local investigators (hazard ratio for progression or\ndeath, 0.43; 95% confidence interval [CI], 0.35 to 0.54; P<0.001). Median\nprogression-free survival was 10.6 months and 4.1 months, respectively, according to\ncentral assessment (hazard ratio, 0.36; 95% CI, 0.27 to 0.47; P<0.001). The study\nmet its pre-specified endpoint, which led to FDA approval of everolimus in

\n

combination with exemestane for this indication in the U.S. on July 20, 2012.48\nOverall survival results were immature at the time of the interim analysis, with a total\nof 83 deaths: 10.7% of patients in the combination-therapy group and 13.0% of those\nin the exemestane-alone group died. Patients and investigators continue to be\nunaware of study assignments and will remain so until survival results are mature for\nanalysis.49

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

See section 1.4.3 Clinical Experience.

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

We hypothesize more complete blockade of the ER-signaling pathway may be\nachieved with selective estrogen receptor downregulator fulvestrant (given at a high\ndose) than may be achieved with the steroidal AI exemestane, and that this will result\nin either comparable or greater effectiveness for the fulvestrant-everolimus\ncombination than the exemestane-everolimus combination. This is supported by\npreclinical data demonstrating that fulvestrant is particularly effective when combined\nwith agents targeting the PI3K-AKT-m-TOR pathway in tumors that have undergone\nlong-term estrogen deprivation, as is the case for patients who have acquired\nresistance to AI therapy.50\nWe therefore propose to study the efficacy of fulvestrant in combination with\neverolimus for the treatment of post-menopausal HR-positive metastatic breast\ncancer in women who have progressed after treatment with an aromatase inhibitor.\nThe combination of a novel class of agents (mTOR inhibitors) and an established\nstandard treatment for metastatic HR-positive breast cancer may potentially increase\nthe clinical benefit by targeting multiple different biological pathways.\nThis is a randomized, double-blind, placebo controlled Phase II study. It is expected\nthat 130 patients will be accrued at 25 centers within the US. Patients will be\nrandomized (1:1) to receive everolimus or placebo after consideration of stratification\nfactors of performance status (0 vs.1), measurable disease (with or without nonmeasurable) vs. non-measurable disease, and prior chemotherapy for metastatic\ndisease vs. no prior chemotherapy.\nInduction Phase:\nTreatment during the Induction Phase includes:\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus everolimus 10 mg (two- 5 mg tablets) PO daily\nOR\nFulvestrant 500 mg IM (two-250 mg injections per dose) on day 1 & 15 of Cycle 1,\nthen 500 mg IM (two-250 mg injections) on day 1 of all subsequent cycles (every 28\ndays) plus placebo two tablets PO daily\nPatients will be evaluated for disease response every 12 weeks (every 3 treatment\ncycles), +/- 1 week, and treated until disease progression, unacceptable toxicity or for\na total of up to 12 cycles.

\n

Continuation Phase:\nPatients with no evidence of progressive disease who remain on study after\ncompleting Cycle 12 will be unblinded and proceed to the Continuation Phase.\nPatients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule. Patients will continue to\nbe evaluated for disease response every 12 weeks (every 3 treatment cycles), +/- 1\nweek, and may continue treatment until disease progression or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).

\n

Objectives

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

See section 2 Objectives.

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

To assess progression-free survival in post-menopausal patients with hormonereceptor positive metastatic breast cancer that is resistant to aromatase inhibitor\ntherapy treated with fulvestrant and everolimus compared to fulvestrant alone.

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

To describe the safety profile, objective response rate, time to progression and\noverall survival in this patient population.

\n

Selection of Patients

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

See section 3 Selection of Patients.

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

Each of the criteria in the following section must be met in order for a patient to be\nconsidered eligible for this study.\nPrECOG will not grant any exceptions or waivers to protocol eligibility criteria.\nIn calculating pre-treatment days of tests and measurements, the day a test or\nmeasurement is done is considered Day 0. Therefore, if a test is done on a\nMonday, the Monday four weeks later would be considered Day 28.\nNote: All questions regarding eligibility should be directed to the PrECOG Study\nContact in study materials. Questions will be further discussed with the medical leads\nfor the trial as deemed appropriate (e.g., medical monitor, study chair).\nInvestigator sites may use the eligibility checklist (see Appendix A: Eligibility\nChecklist) which will be provided as a separate study document, as documentation\nthat eligibility criteria were verified. If used, it should be reviewed, signed, and dated\nprior to patient randomization by the treating physician, and all required elements of\nsource documentation must be found in the patient record (e.g. scans, consent,\npathology).\nInclusion Criteria:\n1. Must be willing to sign a protocol-specific informed consent.\n2. Patients must be 18 years of age or older.\n3. Patients must have an ECOG Performance Status 0 or 1 (see Appendix B:\nECOG Performance Status Scale).\n4. Patients must have histologically or cytologically confirmed adenocarcinoma\nof the breast.\n5. Patients must have stage IV disease or inoperable locally advanced disease.\n6. Patients must have ER and/or PR-positive disease as determined by their\nlocal pathology or reference laboratory by ASCO-CAP criteria.51 Tumors must\nbe HER-2/neu negative or equivocal by standard ICH/FISH or ICH/CISH\nmethodologies by ASCO-CAP criteria.52\n7. Patients must be Aromatase Inhibitor (AI) resistant, defined as:\n•\n•

\n

relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or,\nprogressive disease while receiving an aromatase inhibitor for metastatic\ndisease.

\n

Note: Patients may have received an endocrine agent (e.g., Tamoxifen)\nbetween the time of progression on an AI and registration.

\n

8. Patients who have received one prior cycle (dose on day 1 and day 15) of\nfulvestrant within 28 days of randomization are eligible so long as they meet\nother eligibility criteria.\n•

\n

patients previously treated with two or more prior cycles of fulvestrant are\nnot eligible.

\n

9. Patients must be female and postmenopausal, defined as:\n•\n•\n•\n•

\n

\n

a history of at least 12 months without spontaneous menstrual bleeding or,\nprior bilateral salpingo-oophorectomy, with or without hysterectomy or,\nage ≥ 55 years with a prior hysterectomy with or without oophorectomy or,\nage <55 years with a prior hysterectomy without oophorectomy or\nunknown status, with a documented FSH level in postmenopausal range\nwithin 4 weeks of randomization or,\nreceiving a gonadotropin releasing hormone analog (GnRH) to suppress\novarian function (e.g., goserelin 3.6 mg q 4 weeks).

\n

10. Patients may have received up to one prior systemic chemotherapy regimen\nfor metastatic disease.\n11. Adequate organ function, as evidenced by ALL the following obtained within 4\nweeks of randomization*:\n•\n•\n•\n•\n•\n•\n•

\n

\n

total white blood cell count (leukocytes, WBC) ≥ 3.0 x 109/L, absolute\nneutrophil count (ANC) ≥ 1.5 x 109/L and platelet count ≥ 100 x 109/L\nhemoglobin ≥ 9 g/dL\nserum bilirubin ≤ 1.5 x ULN\nAST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases)\nserum creatinine ≤ 1.5 x ULN\nserum albumin ≥ 3 g/dL\nfasting serum cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND fasting\ntriglycerides ≤ 2.5 x ULN. Note: In case one or both of these thresholds\nare exceeded, the patient can only be included after initiation of\nappropriate lipid lowering medication.\nPT with INR ≤ 1.5 (Anticoagulation is allowed if target INR ≤ 1.5 on a\nstable dose of warfarin or on a stable dose of LMW heparin for >2 weeks\nat time of randomization.)

\n

*Please see study table in Section 7.0 for labs that may need to be repeated\nwithin ≤ 7 days of Cycle 1 Day 1 (C1D1).\n12. Patients may have measurable disease, non-measurable disease (e.g., bone\nonly metastases), or both per RECIST Version 1.1 Criteria. Measurable\nlesions are defined as those that can be accurately measured in at least one\ndimension (longest diameter to be recorded) as ≥ 20 mm by chest x-ray, as ≥\n10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All tumor\nmeasurements must be recorded in millimeters (or decimal fractions of\ncentimeters). Note: Tumor lesions that are situated in a previously irradiated\narea are not considered measurable.

\n

13. Patients with basal cell or squamous cell carcinoma of the skin or carcinoma\nin situ of the cervix within the past five years must have been treated with\ncurative intent. Patients with a history of prior malignancy are eligible provided\nthey were treated with curative intent and have been free of disease for >3\nyears.\nExclusion Criteria:\n1. Patients who have had any major surgery or significant traumatic injury within\n4 weeks of randomization, or have not recovered from the side effects of any\nmajor surgery (defined as requiring general anesthesia) or patients that may\nrequire major surgery during the course of the study are not eligible.\n(Placement of vascular access device will not be considered major surgery.)\n2. Patients may not be receiving any other investigational agents or have\nreceived any investigational agent within 4 weeks of randomization.\n3. Patients must not be receiving any concomitant anticancer treatment or have\nreceived anticancer treatment within 4 weeks of randomization (including\nchemotherapy, radiation therapy, antibody based therapy, etc.), with the\nfollowing exceptions:\n•

\n

Bisphosphonates, Zometa or Xgeva for bone metastases

\n

\n

Hormonal therapy (e.g., AI, Tamoxifen)

\n

\n

a GnRH analog is permitted if the patient had progressive disease on a\nGnRH analog plus a SERM or an AI; the GnRH analog may continue but\nthe SERM or AI must be discontinued.

\n

4. Patients must not have received prior treatment with an mTOR inhibitor\n(sirolimus, temsirolimus, everolimus).\n5. Patients must not be receiving chronic, systemic treatment with corticosteroids\nor another immunosuppressive agent greater than or equal to 5 mg\nprednisone or its equivalent daily. Topical or inhaled corticosteroids are\nallowed.\n6. Patients must not receive immunization with attenuated live vaccines within\none week of randomization or during the study period. Close contact with\nthose who have received attenuated live vaccines should be avoided during\ntreatment with everolimus. Examples of live vaccines include intranasal\ninfluenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\n7. Patients must not have current or a prior history of brain metastases or\nleptomeningeal disease. Patients must not have rapidly progressive, lifethreatening metastases. This includes patients with extensive hepatic\ninvolvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\n8. Patients must not have a known hypersensitivity/history of allergic reactions\nattributed to compounds of similar chemical or biologic composition to\neverolimus (or other rapamycins such as sirolimus, temsirolimus) or\nfulvestrant.

\n

9. Since everolimus may cause bone marrow suppression, patients with\ncongenital or acquired immune deficiency at increased risk of infection are not\neligible. This includes patients being treated with chronic immunosuppressive\nagents (including greater than or equal to 5 mg prednisone or its equivalent\ndaily), and patients with known HIV seropositivity.\n10. Patients must not have any impairment of gastrointestinal function or\ngastrointestinal disease that may significantly alter the absorption of\neverolimus (e.g., ulcerative disease, uncontrolled nausea, vomiting, diarrhea,\nmalabsorption syndrome or small bowel resection).\n11. Patients must not have an active, bleeding diathesis.\n12. Patients must not have a history of any condition or uncontrolled intercurrent\nillness including, but not limited to, ongoing or active infection or psychiatric\nillness/social situations that in the opinion of the local investigator might\ninterfere with or limit the patient’s ability to comply with the protocol or pose\nadditional or unacceptable risk to the patient.\n13. Patients must not have any severe and/or uncontrolled medical conditions or\nother conditions that could affect their participation in the study such as:\n•

\n

Symptomatic congestive heart failure of New York Heart Association Class\nIII or IV (see Appendix D)

\n

\n

Unstable angina pectoris, myocardial infarction within 6 months of\nrandomization, serious uncontrolled cardiac arrhythmia or any other\nclinically significant cardiac disease

\n

\n

History of symptomatic pulmonary disease or non-malignant pulmonary\ndisease (e.g. COPD) requiring treatment. Such patients would be eligible if\nPFTs performed within 8 weeks of treatment noted a DLCO greater than\n50%.

\n

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN\n(Note: Optimal glycemic control should be achieved before starting trial\ntherapy.)

\n

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh\nClass C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors\nmust be done at screening for all patients. HBV DNA and HCV RNA PCR\ntesting are required at screening for all patients with a positive medical history\nbased on risk factors and/or confirmation of prior HBV/HCV infection. (see\nSection 7.1.1 for additional details).

\n

Randomization Procedures

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

See section 4 Randomization Procedures.

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

This study will be conducted in accordance with the ethical principles that have their\norigin in the current Declaration of Helsinki and will be consistent with applicable US\nregulatory requirements and International Conference on Harmonization Good\nClinical Practice (ICH GCP).\nThe study will be conducted in compliance with the protocol. The protocol and any\namendments and the patient informed consent will receive Institutional Review Board\n(IRB) approval prior to initiation of the study.\nFreely given written informed consent must be obtained from every patient or their\nlegally acceptable representative prior to clinical trial participation, including informed\nconsent for any screening procedures conducted to establish patient eligibility for the\ntrial.\nStudy personnel involved in conducting this trial will be qualified by education,\ntraining, and experience to perform their respective task(s). This trial will not use the\nservices of investigators or study personnel where sanctions have been invoked or\nwhere there has been scientific misconduct or fraud (e.g., loss of medical licensure,\ndebarment). Investigators are responsible for the conduct of the study at their study\nsite.

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

Before a site may enter patients, protocol-specific regulatory and other documents\nmust be submitted to PrECOG as noted in study materials. Detailed information\nregarding document submission and control is provided to each site in separate study\nmaterials.\nOnce all required documents are received, reviewed and approved by PrECOG or\ntheir representative, a Study Reference Manual (SRM) will be forwarded to the site.\nAny changes to site regulatory documents must be submitted by the investigator to\nthe responsible party in a timely manner. Initial study drug shipment will not occur\nuntil the regulatory packet is complete. No patients will begin protocol therapy without\nformal randomization as per the process below.

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

Patients must meet all of the eligibility requirements listed in Section 3 prior to\nrandomization. Treatment must begin ≤ 7 working days from randomization.\nAn eligibility checklist has been appended as an example to the protocol and a usable\nversion is available in separate study materials provided to the site. A confirmation of\neligibility assessment by the investigator/site will be performed during the\nrandomization process.\nInformation regarding stratification factors (performance status, measurable disease\nand prior chemotherapy) must be available at the time of randomization.

\n

Once it is determined that a patient meets all eligibility requirements, the patient will\nbe randomized to the study by site personnel using an electronic interactive web\nregistration (IWR) system. Full information regarding registration and randomization\nprocedures and guidelines can be found in the SRM provided to your site. All\ncorrespondence regarding patient randomization must be kept in the study records.

\n

Treatment Plan

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

See section 5 Treatment Plan.

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

Note: 1 cycle = 28 days.\nPatients must begin treatment within 7 working days of randomization.\nDisease evaluations will occur after every 12 weeks, +/- 1 week (which corresponds\nto every 3 treatment cycles) and patients will be treated until disease progression,\nunacceptable toxicity or for a total duration of 12 cycles (Induction Phase). Patients\nwith no evidence of progressive disease who remain on study after completing 12\ncycles will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule. Disease evaluations will continue to\noccur after every 12 weeks (every 3 treatment cycles), +/- 1 week, and patients may\ncontinue treatment until disease progression is documented or unacceptable toxicity.\nAll patients will be followed for 30 days for toxicity after the last dose of study therapy\n(fulvestrant and/or everolimus/placebo) or until recovery from all toxicity (to ≤ grade 1)\nattributed to study therapy, whichever is longer (or if >grade 1, event must be\npermanent and stable).\nSee Sections 8.1 and 8.2 for information on study drug procurement, storage,\npreparation, handling and destruction information.

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

See section 5.2 Dosing and Administration.

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

Induction Phase:\nCycle 1 (28 day cycle)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections each dose)\non day 1 and 15.\nNote: Cycle 1 is the only time fulvestrant is given on day 15. If patient\npreviously received one cycle of fulvestrant (day 1 and day 15) prior to study\nentry as permitted in Inclusion Criteria #8, patient should receive fulvestrant 500\nmg on day 1 only.\nCycle 2, and thereafter (28 day cycles)\nPatients will receive fulvestrant 500 mg IM (two-250 mg injections) on day 1 of\nall subsequent cycles for a maximum of 12 cycles.\nContinuation Phase:\nPatients with no evidence of disease progression after completing 12 cycles are\nunblinded and continue fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until progression of disease or unacceptable toxicity.

\n

Fulvestrant will be obtained from commercial pharmacy stock.

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

\n

The study drug everolimus/placebo will be self-administered (by the patients\nthemselves). The local investigator will instruct the patient to take the study drug\nexactly as specified in the protocol. Everolimus/placebo should be administered\norally once daily, preferably in the morning, at the same time every day with or\nwithout food. Everolimus/placebo tablets should be swallowed whole with a glass\nof water. The tablets must not be chewed or crushed. In cases where tablets\ncannot be swallowed, the tablets should be disintegrated in water just prior to\nbeing taken. Approximately 30 mL (2 tablespoons) of water should be put into a\nglass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should\nthen be drunk. If the patient vomits after taking the study drug, they should not\ntake another tablet that day. If the patient forgets to take the medication and\nremembers by 10 PM, they may take the dose. Otherwise, skip that dose and\nbegin as usual the next day.

\n

\n

Everolimus/placebo will be administered orally as once daily dose of 10 mg (two5 mg tablets) continuously from study day 1 until progression of disease or\nunacceptable toxicity for 12 cycles. See Section 5.5 regarding duration of therapy\n(including guidelines for treatment beyond Cycle 12).

\n

\n

If vomiting occurs, no attempt should be made to replace the vomited dose.

\n

\n

All dosages prescribed and dispensed to the patient and all dose changes during\nthe study must be recorded.

\n

\n

PrECOG, or their designee, will be responsible for blinding, drug randomization,\nand management of the electronic interactive web registration (IWR) system. Both\ntablets will be blinded and identified by kit number only. The IWR system will\nassign the proper kit to the patient based on the patient randomization. Conditions\nfor study drug will be described on the medication label.

\n

\n

Both everolimus and placebo will be provided by Novartis. Everolimus is\nformulated as tablets for oral administration of 5 mg strength. Both placebo and\neverolimus tablets are blister-packed under aluminum foil in units of 10 tablets per\nblister card, which should be opened only at the time of administration as drug is\nboth hygroscopic and light-sensitive.

\n

\n

Dose modifications should be made prior to dose calculation at the beginning of\neach cycle and reasons recorded in source documents and on appropriate case\nreport forms.

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

See section 5.3 Dose Modifications and Toxicity Management.

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

Placebo

\n

CTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE)\nVersion 4.0 will be utilized for AE reporting. All appropriate treatment areas should\nhave access to a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0\ncan be downloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0. (see Appendix E).\nDose modifications for all drugs will be made using the general guidelines below.\n•

\n

All dose reductions are permanent. Fulvestrant will not be dose reduced.

\n

\n

Regardless of the reason for holding any study drug treatment, the maximum\nallowable length of treatment interruption is ≤ 3 weeks. If the delivery of any study\ndrug due to toxicity is delayed for more than 3 weeks, that drug should be\npermanently discontinued.

\n

\n

No more than 2 dose reductions for everolimus/placebo will be allowed. Further\nneed for dose reduction will result in discontinuation of that drug.

\n

\n

If dose is delayed due to toxicity, labs/toxicity should be reevaluated at least\nweekly until recovery to treatment levels, or as indicated in the dose modification\ntables.

\n

\n

Patients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression.

\n

\n

In unusual circumstances where fulvestrant must be discontinued prior to disease\nprogression due to intolerable fulvestrant-associated toxicity, the Medical Monitor\nshould be contacted.

\n

Table 5-0\nEverolimus or Placebo Dose Level Modification Guidelines\nEverolimus/Placebo

\n

Fulvestrant

\n

Starting dose

\n

10 mg daily\n(two- 5 mg tablets)

\n

500 mg

\n

Dose Level -1

\n

5 mg daily

\n

No reduction

\n

Dose Level -2

\n

5 mg every other day

\n

No reduction

\n

Table 5-1\nNon-Hematological Criteria for Dose-Modification in Case of Suspected\nEverolimus or Placebo Related Adverse Events and Re-Initiation of Everolimus\nor Placebo Treatment\nAdverse Event

\n

Action

\n

Non Hematological\nReactivation of HBV or HCV flare

\n

Please refer to Table 5-4 and Table 5-5.

\n

Non-Infectious Pneumonitis

\n

Please refer to Table 5-6.

\n

AST or ALT elevation

\n

Maintain current dose level.

\n

Grade 1 (>ULN - 3.0x ULN)\nGrade 2 (>3.0 - 5.0x ULN)\nAST or ALT elevation\nGrade 3 (>5.0 - 20.0 ULN)*

\n

Interrupt everolimus administration until resolution to ≤ grade 1\n(or ≤ grade 2 if baseline values were within the range of grade\n2). If resolution occurs ≤ 7 days, everolimus should be re-started\nat the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to ≤ grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.

\n

AST or ALT elevation\nGrade 4 (>20x ULN)*

\n

Intolerable Grade 2 mucositis\n(see Section 5.3.2.5)

\n

Interrupt everolimus administration until resolution to ≤ grade 1\n(or ≤ grade 2 if baseline values were within the range of grade\n2). If resolution occurs ≤ 7 days, everolimus should be re-started\nat one dose level lower. If resolution takes >7 days, discontinue\neverolimus.\nInterrupt everolimus administration until resolution to ≤ grade 1\nor baseline grade/value.\nIf resolution occurs within ≤ 7 days, everolimus should be restarted at the dose level prior to interruption.\nIf resolution takes >7 days, or if event recurs within 28 days,\nhold everolimus until recovery to ≤ grade 1 or baseline grade/\nvalue and reintroduce everolimus at one dose level lower, if\navailable.\nPatients will be withdrawn from the study if they fail to recover to\n≤ grade 1 or baseline grade/value within 21 days.

\n

Grade 3 AE, except:\nhyperglycemia or\nhypertriglyceridemia or\nhypercholesterolemia\n(see Section 5.3.2.7)

\n

Interrupt everolimus administration until resolution to ≤ grade 1\nor baseline grade/value.\nReintroduce everolimus at one dose level lower, if available.\nPatients will be withdrawn from the study if they fail to recover to\n≤ grade 1 or baseline grade/value within 21 days.

\n

Any other Grade 4

\n

Hold everolimus until recovery to grade ≤ 1 or baseline value.\nReintroduce everolimus at one dose level lower, if available.

\n

Grade 3 or 4 clinical liver failure\n(asterixis or encephalopathy/\ncoma)

\n

Discontinue everolimus.

\n

Recurrence of intolerable Grade 2\nmucositis or Grade 3 event after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

Recurrence of Grade 4 after\ndose reduction

\n

Discontinue everolimus.

\n

Any non-hematologic toxicity\nrequiring\ninterruption\nof\neverolimus for >21 days

\n

Discontinue everolimus.

\n

* Should HCV flare be confirmed, the guidelines for flare must take precedence (Table 5-5).

\n

Table 5-2\nHematological Criteria for Dose-Modification in Case of Suspected Everolimus\nor Placebo Related Adverse Events and Re-Initiation of Everolimus or Placebo\nAdverse Event

\n

Action

\n

Hematological\nGrade 2 thrombocytopenia

\n

No action.

\n

(platelets <75, ≥ 50 x 10 /L)\nGrade 3 thrombocytopenia

\n

Interrupt everolimus until resolution to grade ≤1

\n

(platelets <50, ≥ 25 x 10 /L)

\n

If resolution occurs ≤ 7 days, reintroduce everolimus at the\ndose level prior to interruption.

\n

If resolution occurs >7 days, or event occurs within 28 days,\nreintroduce everolimus at one dose level lower, if available.\nGrade 4 thrombocytopenia

\n

(platelets <25 x 10 /L)\nGrade 3 neutropenia or anemia

\n

(neutrophil <1, ≥ 0.5 x 10 /L)

\n

Interrupt everolimus until recovery to grade ≤ 1. Then\nreintroduce everolimus at one dose level lower, if available.\nInterrupt everolimus until resolution to grade ≤1 or baseline\nvalue\nIf AE resolution occurs ≤ 7 days, reintroduce everolimus at\nthe same dose level.\nIf AE resolution occurs >7 days, or event occurs within 28\ndays, reintroduce everolimus at one dose level lower, if\navailable.

\n

Grade 4 neutropenia or anemia

\n

Interrupt everolimus until recovery to grade ≤ 1 or baseline\nvalue. Reintroduce everolimus at one dose level lower, if\navailable.*

\n

Febrile neutropenia

\n

Interrupt everolimus until resolution to grade ≤ 1 (or baseline\nvalue) and no fever. Reintroduce everolimus at one dose\nlevel lower, if available.*

\n

Recurrence of Grade 3 toxicity after\ndose reduction

\n

Reduce dose to the next lower dose level, if available. The\nlowest possible dose level of everolimus is 5 mg every other\nday. Below this level, everolimus must be discontinued.

\n

*Recurrence of Grade 4 toxicity\n(including febrile neutropenia) after\ndose reduction

\n

Discontinue everolimus.

\n

*Any hematologic toxicity requiring\neverolimus interruption for >21\ndays

\n

Discontinue everolimus.

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

The data described below reflect exposure to everolimus (n= 274) and placebo\n(n= 137) in a randomized Phase III study for the treatment of metastatic renal cell\ncarcinoma. In total, 165 patients were exposed to everolimus 10 mg/day for ≥ 4\nmonths. The median age of patients was 61 years (range 27 to 85). The most\ncommon adverse reactions (incidence ≥ 10%) were stomatitis, rash, fatigue, asthenia,\ndiarrhea, anorexia, nausea, mucosal inflammation, vomiting, cough, peripheral\nedema, infections, dry skin, epistaxis, pruritus, and dyspnea. The most common\ngrade 3-4 adverse reactions (incidence ≥ 2%) were infections, stomatitis, fatigue, and\npneumonitis.\nThe median duration of blinded study treatment was 141 days (range 19 to 451) for\npatients receiving everolimus and 60 days (range 21 to 295) for those receiving\nplacebo. The rates of treatment-emergent adverse reactions resulting in permanent\ndiscontinuation were 7% and 0% for the everolimus and placebo treatment groups,\nrespectively. Most treatment-emergent adverse reactions were grade 1 or 2 in\nseverity. Grade 3 or 4 treatment-emergent adverse reactions were reported in 39%\nversus 7% of patients receiving everolimus and placebo, respectively. Deaths due to\nacute respiratory failure (0.7%), infection (0.7%), and acute renal failure (0.4%) were\nobserved on the everolimus arm.\nEverolimus has immunosuppressive properties and may predispose patients to\nbacterial, fungal, viral or protozoan infections, including infections with opportunistic\npathogens. Localized and systemic infections, including pneumonia, other bacterial\ninfections, invasive fungal infections, such as aspergillosis or candidiasis and viral\ninfections including reactivation of hepatitis B virus, have been described in patients\ntaking everolimus. Some of these infections have been severe (e.g. leading to\nrespiratory or hepatic failure) and occasionally have had a fatal outcome.

\n

Physicians and patients should be aware of the increased risk of infection with\neverolimus. Treat pre-existing infections prior to starting treatment with everolimus.\nWhile taking everolimus, be vigilant for symptoms and signs of infection; if a diagnosis\nof infection is made, institute appropriate treatment promptly and consider interruption\nor discontinuation of everolimus. If a diagnosis of invasive systemic fungal infection is\nmade, discontinue everolimus and treat with appropriate antifungal therapy.\nReactivation of Hepatitis B (HBV) has been observed in patients with cancer\nreceiving chemotherapy.53 Sporadic cases of Hepatitis B reactivation have also been\nseen in this setting with everolimus. Use of antivirals during anti-cancer therapy has\nbeen shown to reduce the risk of Hepatitis B virus reactivation and associated\nmorbidity and mortality.54 A detailed assessment of Hepatitis B/C medical history and\nrisk factors must be done for all patients at screening, with testing performed prior to\nthe first dose of everolimus.\nHypersensitivity reactions manifested by symptoms including, but not limited to,\nanaphylaxis, dyspnea, flushing, chest pain or angioedema (e.g. swelling of the\nairways or tongue, with or without respiratory impairment) have been observed with\neverolimus.\nElevations of serum creatinine, usually mild, have been reported in clinical trials.\nMonitoring of renal function, including measurement of blood urea nitrogen (BUN) or\nserum creatinine, is recommended prior to the start of everolimus therapy and\nperiodically thereafter.\nDecreased hemoglobin, lymphocytes, platelets and neutrophils have been reported in\nclinical trials. Monitoring of complete blood count is recommended prior to the start of\neverolimus therapy and periodically thereafter.\nThe use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus.\nHypophosphatemia, hypomagnesaemia, hyponatremia and hypocalcaemia have\nbeen reported as serious adverse reactions. Electrolytes should be monitored in\npatients treated with everolimus.\nTable 5-1 and Table 5-2 provide general recommendations for the management of\npatients, with suspected drug toxicities while on treatment with everolimus as singleagent therapy.\nMore detailed information regarding everolimus reported suspected toxicities and\nindividual cases are provided in the Investigator’s Brochure.\n5.3.2.1

\n

Management of Hepatitis Reactivation/Flare

\n

In cancer patients with hepatitis B, whether carriers or in chronic state, use of\nantivirals during anticancer therapy has been shown to reduce the risk of hepatitis B\nvirus (HBV) reactivation and associated HBV morbidity and mortality.54

\n

5.3.2.2

\n

Monitoring and\nReactivation

\n

Prophylactic

\n

Treatment

\n

for

\n

Hepatitis

\n

B

\n

Table 5-3 provides details of monitoring and prophylactic therapy according to the\nbaseline results of viral load and serologic markers testing.\nTable 5-3\nAction to be Taken for Positive Baseline Hepatitis B Results

\n

Test

\n

Result

\n

Result

\n

Result

\n

Result

\n

Result

\n

HBV-DNA

\n

+

\n

+ or -

\n

-

\n

-

\n

-

\n

HBsAg

\n

+ or -

\n

+

\n

-

\n

-

\n

-

\n

HBsAb

\n

+ or -

\n

+ or -

\n

+

\n

+ or -

\n

-

\n

and no prior HBV\nvaccination\nHBcAb

\n

+ or -

\n

Recommendation

\n

+ or -

\n

+ or -

\n

or + with prior\nHBV vaccination\n+

\n

No prophylaxis

\n

Prophylaxis treatment should be\nstarted 1-2 weeks prior to first dose of\nstudy drug

\n

Monitor HBV-DNA approximately\nevery 3-4 weeks

\n

No specific\naction

\n

Monitor HBV-DNA approximately\nevery 4-8 weeks

\n

Antiviral prophylaxis therapy should continue for at least 4 weeks after last dose of\nstudy drug.\nFor hepatitis B reactivation, definition and management guidelines see Table 5-4\nGuidelines for Management of Hepatitis B.

\n

Table 5-4\nGuidelines for Management of Hepatitis B\nHBV Reactivation (with or without clinical signs and symptoms)*\nFor patients with baseline\nresults:\nPositive HBV-DNA

\n

≤ baseline HBV-DNA levels

\n

Positive HBsAg\n-------------------------------------Reactivation is defined as:\nIncrease of 1 log in HBVDNA relative to baseline\nHBV-DNA value OR new\nappearance of measurable\nHBV-DNA\nFor patients with baseline\nresults:\nHBV-DNA

\n

AND\nInterrupt study drug administration until resolution:

\n

OR

\n

Negative\nHBsAg

\n

Treat: Start a second antiviral

\n

and

\n

If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Both antiviral\ntherapies should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue both antiviral therapies at least 4 weeks after last\ndose of study drug.\nTreat: Start first antiviral medication\nAND\nInterrupt study drug administration until resolution:\n≤ baseline HBV-DNA levels

\n

AND\nPositive HBsAb (with no\nprior history of vaccination\nagainst HBV), OR positive\nHBcAb\n------------------------------------Reactivation is defined as:\nNew\nappearance\nmeasurable HBV-DNA

\n

of

\n

If resolution occurs within ≤ 21 days, study drug should be restarted at one dose lower, if available. If the patient is already\nreceiving the lowest dose of study drug according to the protocol, the\npatient should restart at the same dose after resolution. Antiviral\ntherapy should continue at least 4 weeks after last dose of study\ndrug.\nIf resolution occurs >21 days, patients should discontinue study\ndrug but continue antiviral therapy at least 4 weeks after last dose of\nstudy drug.

\n

* All reactivations of hepatitis B are to be recorded as grade 3 (CTEP CTCAE Version\n4.0 Metabolic Laboratory/Other: Viral Reactivation), unless considered life threatening\nby the investigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Reactivation).

\n

5.3.2.3

\n

Monitoring for Hepatitis C Flare

\n

The following two categories of patients should be monitored every 4-8 weeks for\nHCV reactivation:\n•

\n

Patients with detectable HCV RNA-PCR test at baseline.

\n

\n

Patients known to have a history of HCV infection, despite a negative viral load\ntest at baseline (including those that were treated and are considered ‘cured’).

\n

For definition of hepatitis C flare and the management guidelines, see Table 5-5\nGuidelines for Management of Hepatitis C.\nTable 5-5\nGuidelines for Management of Hepatitis C\nHCV Flare*\nFor patients with baseline results:

\n

Discontinue study drug.

\n

Detectable HCV-RNA:\nHCV Flare is defined as:\n˃2 log10 IU/mL increase in HCV-RNA\nAND\nALT elevation ˃5x ULN or 3x baseline level,\nwhichever is higher\nDiscontinue study drug.

\n

For patients with baseline results:\nKnowledge of past hepatitis C infection\nwith no detectable HCV-RNA:\nHCV Flare is defined as:\nNew appearance of detectable HCV-RNA\nAND\nALT elevation ˃5x ULN or 3x baseline level,\nwhichever is higher

\n

* All flares of hepatitis C are to be recorded as grade 3 (CTEP CTCAE Version 4.0.\nMetabolic Laboratory/Other: Viral Flare), unless considered life threatening by the\ninvestigator; in which case they should be recorded as grade 4 (CTEP CTCAE\nVersion 4.0 Metabolic Laboratory/Other: Viral Flare).

\n

5.3.2.4

\n

Management of Skin Toxicity

\n

For patients with grade 1 toxicity, no specific supportive care is usually needed or\nindicated. Rash must be reported as an AE. Patients with grade 2 or higher toxicity\nmay be treated with the following suggested supportive measures at the discretion of\nthe investigator: oral minocycline, topical tetracycline, topical clindamycin, topical\nsilver sulfadiazine, diphenhydramine, oral prednisolone (short course), topical\ncorticosteroids, or pimecrolimus.

\n

5.3.2.5

\n

Management of Stomatitis/Oral Mucositis/Mouth Ulcers

\n

Patients with a clinical history of stomatitis/mucositis/mouth ulcers and those with\ngastrointestinal morbidity associated with mouth/dental infections, irritation of\nesophageal mucosa e.g. gastroesophageal reflux disease (GERD) and pre-existing\nstomatitis/mucositis must be monitored even more closely. Patients should be\ninstructed to report the first onset of buccal mucosa irritation/reddening to their study\nphysician immediately.\nSuggested prophylactic treatment for prevention of stomatitis/mucositis:\na) Use 15 mL baking soda/salt mouth rinse QID (swish and spit). Mix 1/3 teaspoon\nbaking soda and 1/3 teaspoon of salt in 1 quart of water (refrigeration is not\nneeded); do not eat or drink anything for 10 minutes after rinsing.\nb) Use 10 mL prescribed “miracle mouth wash’’ QID (swish and spit). For 16-ounce\nrecipe: 320 mL Benadryl solution, 2 g tetracycline powder, 80 mg hydrocortisone,\nand 40 mL nystatin suspension, quantity sufficient with water. Wait 10-15 minutes\nafter the baking soda/salt rinse before using “miracle mouthwash’’.55\nStomatitis/oral mucositis/mouth ulcers due to everolimus should be treated using local\nsupportive care. Please note that investigators in earlier trials have described the oral\ntoxicities associated with everolimus as mouth ulcers, rather than mucositis or\nstomatitis. If your examination reveals mouth ulcers rather than a more general\ninflammation of the mouth, please classify the adverse event as such. Please follow\nthe paradigm below for treatment of stomatitis/oral mucositis/mouth ulcers:\n1. For mild toxicity (Grade 1), use conservative measures as noted above, baking\nsoda/salt mouth rinse and “miracle mouth wash”.\n2. For more severe toxicity (Grade 2 in which case patients have pain but are able to\nmaintain adequate oral alimentation, or Grade 3 in which case patients cannot\nmaintain adequate oral alimentation), the suggested treatments are:\nIn addition to baking soda/salt mouth rinse and “miracle mouth wash”\nabove, topical analgesic mouth treatments (e.g., local anesthetics such as\nbenzocaine, butyl aminobenzoate, tetracaine hydrochloride, menthol, or phenol)\nwith or without topical corticosteroids, such as triamcinolone oral paste 0.1%\n(Kenalog in Orabase®) or Periogard® oral rinse.\n3. Agents containing hydrogen peroxide, iodine, and thyme derivatives may tend to\nworsen mouth ulcers. It is preferable to avoid these agents. Alcohol–containing\nrinses and tooth paste with sodium lauryl sulfate should also be avoided. Avoid\nacidic, spicy, hard, or crunchy foods, and consume foods that are tepid rather\nthan hot.55\n4. Antifungal agents must be avoided unless a fungal infection is diagnosed. In\nparticular, systemic imidazole antifungal agents (ketoconazole, fluconazole,\nitraconazole, etc.) should be avoided in all patients due to their strong inhibition of\neverolimus metabolism, thereby leading to higher everolimus exposures.\nTherefore, topical antifungal agents are preferred if an infection is diagnosed.\nSimilarly, antiviral agents such as acyclovir should be avoided unless a viral\ninfection is diagnosed.\nNote: Stomatitis/oral mucositis should be appropriately graded using the functional\ngrading given on the CTEP CTCAE Version 4.0.

\n

5.3.2.6

\n

Management of Diarrhea

\n

Appearance of grade 1-2 diarrhea attributed to study drug toxicity may be treated with\nsupportive care such as loperamide, initiated at the earliest onset (for example 4 mg\norally followed by 2 mg orally every 2 hours until resolution of diarrhea).\n5.3.2.7

\n

Management of Hyperlipidemia and Hyperglycemia

\n

Treatment of hyperlipidemia should take into account the pre-treatment status and\ndietary habits. Grade 2 or higher hypercholesterolemia (>300 mg/dL or 7.75 mmol/L)\nor grade 2 hypertriglyceridemia or higher (>2.5x upper normal limit) should be treated\nwith a 3-hydroxy-3-methyl-glutaryl (HMG)-CoA reductase inhibitor (e.g. atorvastatin,\npravastatin, fluvastatin) or appropriate triglyceride-lowering medication, in addition to\ndiet.\nNote: Concomitant therapy with fibrates and an HMG-CoA reductase inhibitor is\nassociated with an increased risk of a rare but serious skeletal muscle toxicity\nmanifested by rhabdomyolysis, markedly elevated creatine phosphokinase (CPK)\nlevels and myoglobinuria, acute renal failure and sometimes death. The risk versus\nbenefit of using this therapy should be determined for individual patients based on\ntheir risk of cardiovascular complications of hyperlipidemia.\nHyperglycemia has been reported in clinical trials. Monitoring of fasting serum\nglucose is recommended prior to the start of everolimus therapy and periodically\nthereafter. Optimal glycemic control should be achieved before starting trial therapy.\n5.3.2.8

\n

Management of Non-Infectious Pneumonitis

\n

Non-infectious pneumonitis is a class effect of rapamycin derivatives. Cases of noninfectious pneumonitis (including interstitial lung disease) have also been described in\npatients taking everolimus. Some of these have been severe and on rare occasions,\na fatal outcome was observed.\nA diagnosis of non-infectious pneumonitis should be considered in patients\npresenting with non-specific respiratory signs and symptoms such as hypoxia, pleural\neffusion, cough or dyspnea, and in whom infectious, neoplastic and other nonmedicinal causes have been excluded by means of appropriate investigations.\nPatients should be advised to report promptly any new or worsening respiratory\nsymptoms.\nPatients who develop radiological changes suggestive of non-infectious pneumonitis\nand have few or no symptoms may continue everolimus therapy without dose\nalteration. If symptoms are moderate (Grade 2), consideration should be given to\ninterruption of therapy until symptoms improve. The use of corticosteroids may be\nindicated. Everolimus may be reintroduced at a reduced dose until recovery to Grade\n1 or better.\nFor cases where symptoms of non-infectious pneumonitis are severe (Grade 3),\neverolimus therapy should be discontinued and the use of corticosteroids may be\nindicated until clinical symptoms resolve. Therapy with everolimus may be re-initiated\nat a reduced dose depending on the individual clinical circumstances.

\n

For non-infectious pneumonitis definition and management guidelines, see Table 5-6\nManagement of Non-Infectious Pneumonitis.\nTable 5-6\nManagement of Non-Infectious Pneumonitis\nWorst Grade\nPneumonitis

\n

Management of\nPneumonitis

\n

Required Investigations

\n

therapy

\n

Everolimus Dose\nAdjustment

\n

Grade 1

\n

CT scans with lung windows.

\n

No specific\nrequired

\n

is

\n

No dose adjustment required.\nInitiate appropriate monitoring.

\n

Grade 2

\n

CT scan with lung windows.\nConsider pulmonary function\ntesting includes: spirometry,\nDLCO, and room air O2\nsaturation at rest. Consider a\nbronchoscopy\nwith\nbiopsy\nand/or BAL. Monitoring at each\nvisit until return to ≤ grade 1.\nReturn to initial monitoring\nfrequency if no recurrence.

\n

Symptomatic only.\nConsider\ncorticosteroids\nand/or other supportive\ntherapy if symptoms are\ntroublesome.

\n

Rule out infection and consider\ninterruption of everolimus until\nsymptoms improve to Grade ≤\n1.\nRe-initiate everolimus at one\ndose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within ≤ 21\ndays.

\n

Grade 3

\n

CT scan with lung windows and\npulmonary\nfunction\ntesting\nincludes: spirometry, DLCO,\nand room air O2 saturation at\nrest. Monitoring at each visit\nuntil return to ≤ grade 1. Return\nto initial monitoring frequency if\nno recurrence. Bronchoscopy\nwith biopsy and/or BAL is\nrecommended.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule out infection and interrupt\neverolimus until symptoms\nimprove to Grade ≤ 1.\nConsider re-initiating everolimus at one dose level lower.\nDiscontinue\neverolimus\nif\nfailure to recover within ≤ 21\ndays.

\n

Grade 4

\n

CT scan with lung windows and\nrequired pulmonary function\ntesting, if possible, includes:\nspirometry, DLCO, and room air\nO2 saturation at rest. Monitoring\nat each visit until return to ≤\ngrade 1. Return to initial\nmonitoring frequency if no\nrecurrence. Bronchoscopy with\nbiopsy\nand/or\nBAL\nis\nrecommended if possible.

\n

Consider corticosteroids if\ninfective origin is ruled out.\nTaper\nas\nmedically\nindicated.

\n

Rule\nout\ninfection\ndiscontinue everolimus.

\n

All interruptions or changes to study drug administration must be recorded.\nIt will be documented whether or not each patient completed the clinical study. If for\nany patient either study treatment or observations were discontinued the reason will\nbe recorded.

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

Patients will be instructed not to take any additional medications (including over-thecounter products) during the course of the study without prior consultation with the\nlocal investigator. At each visit, the investigator will ask the patient about any new\nmedications he/she is or has taken after the start of the study drug.

\n

and

\n

Concomitant medications/significant non-drug therapies taken ≤ 28 days prior\nto start and after start of study drug, including physical therapy and blood\ntransfusions, should be reviewed.

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

The following restrictions apply during the entire duration of the study:\n•

\n

No other investigational therapy should be given to patients.

\n

\n

No anticancer agents other than the study medication should be given to patients,\nwith the following exceptions:\no\no

\n

Bisphosphonates, Zometa, or Xgeva for bone metastases\na GnRH analog is permitted if the patient had progressive disease on a GnRH\nanalog plus a SERM or an AI; the GnRH analog may continue but the SERM\nor AI must be discontinued.

\n

\n

If any other anticancer agents are required for a patient then the patient must first\nbe withdrawn from the study.

\n

\n

Concurrent radiation therapy is prohibited, however palliative radiotherapy may be\nconsidered on a case by case basis after discussion with the Study Chair.

\n

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or\nanother immunosuppressive agent greater than or equal to 5 mg prednisone or its\nequivalent daily. Topical or inhaled corticosteroids are allowed.

\n

\n

The use of live vaccines and close contact with those who have received live\nvaccines should be avoided during treatment with everolimus. Examples of live\nvaccines include intranasal influenza, measles, mumps, rubella, oral polio, BCG,\nyellow fever, varicella and TY21a typhoid vaccines.

\n

\n

It is highly recommended that patients with positive HBV-DNA or HBsAg are\ntreated prophylactically with an antiviral for 1-2 weeks prior to receiving study drug\n(see Table 5-3).

\n

\n

The antiviral treatment should continue throughout the entire study period and for\nat least 4 weeks after the last dose of study drug.

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA according to study visit schedule.

\n

\n

Oral contraceptives in preclinical and clinical data have shown everolimus to have\nCYP3A4 inhibitory activity rather than induction activity, induction of metabolism\nof contraceptive hormones by everolimus is unlikely. Consequently, administration\nof everolimus should not reduce the efficacy of oral contraceptives.

\n

\n

Grapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.

\n

5.3.5\n5.3.5.1

\n

Administration of Everolimus and CYP3A4 Inhibitors/\nInducers

\n

Inhibitors of CYP3A4 and/or PgP

\n

Everolimus is metabolized by CYP3A4 in the liver and to some extent in the intestinal\nwall.\nTherefore, the following are recommended:\nCo-administration with strong inhibitors of CYP3A4 (e.g., ketoconazole, itraconazole,\nritonavir) or P-glycoprotein (PgP) should be avoided.\nCo-administration with moderate CYP3A4 inhibitors (e.g., erythromycin, fluconazole)\nor PgP inhibitors should be used with caution. If a patient requires co-administration\nof moderate CYP3A4 inhibitors or PgP inhibitors, reduce the dose of everolimus to 5\nmg every other day. Additional dose reductions to every other day may be required to\nmanage toxicities. If the inhibitor is discontinued, the everolimus dose should be\nreturned to the dose used prior to initiation of the moderate CYP3A4/PgP inhibitor\nafter a washout period of 2-3 days.\nGrapefruit and other citrus juices affect P450 and PgP activity. Concomitant use\nshould be avoided.\nRefer to Appendix C Table 15-0 for list of medications known to induce/inhibit\nCYP3A4 and Table 15-1 for a list of medications known to inhibit PgP.\n5.3.5.2

\n

Inducers of CYP3A4 and/or PgP

\n

Avoid the use of strong CYP3A4 inducers (e.g., phenytoin, carbamazepine, rifampin,\nrifabutin, phenobarbital, St. John’s Wort). If a patient requires co-administration of\nstrong CYP3A4 inducers, an increase in the dose of everolimus up to twice the\ncurrently used daily dose should be considered, 5 mg increments. Enzyme induction\nusually occurs within 7-10 days; therefore everolimus dose should be increased by\none increment 7 days after the start of the inducer therapy. If no safety concerns are\nseen within the next 7 days, the dose can be increased again one additional\nincrement up to a maximum of twice the daily dose used prior to initiation of the\nstrong CYP3A4 inducer. The choice to adjust the dose of everolimus in a patient\nrequiring co-administration of strong CYP3A4 inducers will be done at the discretion\nof the treating investigator.\nThis dose adjustment of everolimus is intended to achieve similar AUC to the range\nobserved without inducers. However, there are no clinical data with this dose\nadjustment in patients receiving strong CYP3A4 inducers. If the strong inducer is\ndiscontinued the everolimus dose should be returned to the dose used prior to\ninitiation of the strong CYP3A4/PgP inducer. Refer to Appendix C Table 15-0 for list\nof medications known to induce CYP3A4 and Table 15-1 for a list of medications\nknown to induce PgP.\nOral anticoagulants such as warfarin are CYP2C9 substrates and, as such, no\ninteraction with everolimus is expected. However, drug-drug interaction studies\nbetween macrolide antibiotics and warfarin have produced mixed outcomes and the\ndisparity in these findings has led to the conclusion that multiple factors may alter the

\n

clearance of warfarin. The co-administration of everolimus and oral anticoagulants is\npossible but should be subject to verification of coagulation (INR) once steady state is\nreached (after one week’s treatment).\nA comprehensive list of cytochrome P450 isoenzymes and CYP3A4 inhibitors,\ninducers, and substrates can be found at:\nhttp://medicine.iupui.edu/clinpharm/ddis/table.aspx. This\nrevised and should be checked frequently for updates.

\n

5.4

\n

website

\n

is

\n

continually

\n

Supportive Care

\n

All supportive measures consistent with optimal patient care will be given throughout\nthe study.\nThe clinical tolerance of the patient, the overall tumor response, and the medical\njudgment of the investigator will determine if it is in the patient’s best interest to\ncontinue or discontinue treatment. If treatment is discontinued due to any toxicity, the\npatient must be followed to monitor duration of toxicity, response and time to\nprogression or survival and initiation of any new systemic therapy.

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

See section 5.3.5 Administration of Everolimus and CYP3A4 Inhibitors/Inducers.

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

See section 5.4 Supportive Care.

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

CR, PR, or SD patients will continue therapy per their induction arm randomized\nassignments until evidence of progressive disease, unacceptable toxicity occurs, or\nfor a total of 12 cycles (Induction Phase). Patients with no evidence of progressive\ndisease who remain on study after completing 12 cycles will be unblinded and\nproceed to the Continuation Phase. Patients in the Continuation Phase should\ncontinue to receive fulvestrant alone (if originally randomized to placebo) or in\ncombination with everolimus (if originally randomized to everolimus) at the same dose\nand schedule until disease progression or unacceptable toxicity.\nProtocol therapy will be discontinued for progressive disease at any time. Patients are\nfree to halt therapy at their request. Treatment may be discontinued if intercurrent comorbidities occur, which, in the opinion of the treating physician, would preclude safe\nadministration of study drugs.\nPatients who discontinue everolimus/placebo because of suspected everolimusassociated toxicity should continue treatment with fulvestrant alone until disease\nprogression. In unusual circumstances where fulvestrant must be discontinued prior\nto disease progression due to intolerable fulvestrant-associated toxicity, the medical\nmonitor should be contacted. All patients who have discontinued protocol therapy will\nbe followed for survival and for progression if protocol therapy was discontinued\nbecause of toxicity or for other reasons. All surviving patients who have discontinued\ninduction protocol therapy (fulvestrant and everolimus/placebo) for any reason will be\nfollowed for 30 days for study drug related (fulvestrant and/or everolimus/placebo)\ntoxicities to ≤ grade 1 (or if >grade 1, event must be permanent and stable).

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

Patients MUST be discontinued from study therapy AND be withdrawn from the study\nfor the following reasons:\n•

\n

Withdrawal of the patient’s consent (patient’s decision to withdraw for any reason)

\n

\n

Termination of the study by PrECOG

\n

\n

Any clinical adverse event, laboratory abnormality or intercurrent illness which, in\nthe opinion of the investigator, indicates that continued participation in the study is\nnot in the best interest of the subject

\n

\n

Inability to comply with protocol

\n

\n

Discretion of the investigator

\n

\n

Disease progression (patient will continued to be followed for survival)

\n

All subjects who discontinue treatment should comply with protocol specified followup procedures as outlined in Section 7.1.5.\nIf a subject is withdrawn before completing the study, the reason for withdrawal must\nbe entered on the appropriate case report form.

\n

Measurement of Effect

\n

6.1

\n

Antitumor Effect- Solid Tumors

\n

For the purposes of this study, patients should be re-evaluated for response every 12\nweeks, +/- 1 week. All baseline evaluations should be performed as closely as\npossible to the beginning of treatment and never more than four weeks before\nrandomization.\nResponse and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors\n(RECIST) guideline (Version 1.1).56 Changes in the largest diameter (unidimensional\nmeasurement) of the tumor lesions and the shortest diameter in the case of malignant\nlymph nodes are used in the RECIST criteria.

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

See section 6 Measurement of Effect.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_6_1", + "text": "

See section 6.1 Antitumor Effect - Solid Tumors.

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

Evaluable for toxicity: All patients will be evaluable for toxicity from the time of their\nfirst treatment with fulvestrant and everolimus/placebo. All patients will be followed for\n30 days for toxicity after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until recovery from all toxicity (to ≤ grade 1) attributed to study\ntherapy, whichever is longer (or if >grade 1, event must be permanent and stable).\nEvaluable for objective response: Only those patients who have measurable disease\npresent at baseline, have received at least one cycle of therapy, and have had their\ndisease re-evaluated will be considered evaluable for response. These patients will\nhave their response classified according to the definitions stated below. (Note:\nPatients who exhibit objective disease progression prior to the end of Cycle 1 will also\nbe considered evaluable.)\nEvaluable non-target disease response: Patients who have lesions present at\nbaseline that are evaluable but do not meet the definitions of measurable disease,\nhave received at least one cycle of therapy, and have had their disease re-evaluated\nwill be considered evaluable for non-target disease. The response assessment is\nbased on the presence, absence, or unequivocal progression of the lesions.

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

Measurable lesions: are defined as those that can be accurately measured in at least\none dimension (longest diameter in the plane of measurement) is to be recorded with\na minimum size of:\n•

\n

≥ 20 mm by chest x-ray (if clearly defined and surrounded by aerated lung)

\n

\n

≥ 10 mm with CT scan (irrespective of scanner type) and MRI (no less than\ndouble the slice thickness and a minimum of 10 mm)

\n

\n

≥ 10 mm with calipers by clinical exam when superficial

\n

All tumor measurements must be recorded in millimeters (or decimal fractions of\ncentimeters).

\n

Note: Tumor lesions that are situated in a previously irradiated area, or in an area\nsubjected to other loco-regional therapy, are usually not considered measurable\nunless there has been demonstrated progression in the lesion.\nMalignant lymph nodes: to be considered pathologically enlarged and measurable, a\nlymph node must be ≥ 15 mm in short axis (perpendicular to longest diameter) when\nassessed by CT scan (CT scan slice thickness recommended to be no greater than 5\nmm). At baseline and in follow-up, only the short axis will be measured and followed.\nNon-measurable lesions: all other lesions (or sites of disease), including small lesions\n(longest diameter <10 mm or pathological lymph nodes with ≥ 10 to <15 mm short\naxis), are considered non-measurable disease. Leptomeningeal disease, ascites,\npleural/pericardial effusions, lymphangitis cutis/pulmonitis, inflammatory breast\ndisease, and abdominal masses/organomegaly (not followed by CT or MRI), are\nconsidered as non-measurable.\nNote: Cystic lesions that meet the criteria for radiographically defined simple cysts\nshould not be considered as malignant lesions (neither measurable nor nonmeasurable) since they are, by definition, simple cysts.\n‘Cystic lesions’ thought to represent cystic metastases can be considered as\nmeasurable lesions, if they meet the definition of measurability described above.\nHowever, if non-cystic lesions are present in the same patient, these are preferred for\nselection as target lesions.\nLytic bone lesions, with an identifiable soft tissue component, evaluated by CT or\nMRI, can be considered as measurable lesions if the soft tissue component otherwise\nmeets the definition of measurability noted above. Blastic bone lesions are nonmeasurable.

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

All measurements should be taken and recorded in metric notation using a ruler or\ncalipers. All baseline evaluations should be performed as closely as possible to the\nbeginning of treatment and never more than 4 weeks before randomization.\nThe same method of assessment and the same technique should be used to\ncharacterize each identified and reported lesion at baseline and during follow-up.\nImaging-based evaluation is preferred to evaluation by clinical examination unless the\nlesion(s) being followed cannot be imaged but are assessable by clinical exam.\nClinical lesions: Clinical lesions will only be considered measurable when they are\nsuperficial (e.g., skin nodules and palpable lymph nodes) and ≥ 10 mm diameter as\nassessed using calipers (e.g., skin nodules). In the case of skin lesions,\ndocumentation by color photography, including a ruler to estimate the size of the\nlesion, is recommended.\nChest x-ray: Lesions on chest x-ray are acceptable as measurable lesions when they\nare clearly defined and surrounded by aerated lung. However, CT is preferable.

\n

Conventional CT and MRI: This guideline has defined measurability of lesions on CT\nscan based on the assumption that CT slice thickness is 5 mm or less. If CT scans\nhave slice thickness greater than 5 mm, the minimum size for a measurable lesion\nshould be twice the slice thickness. MRI is also acceptable in certain situations (e.g.\nfor body scans).\nUse of MRI remains a complex issue. MRI has excellent contrast, spatial, and\ntemporal resolution; however, there are many image acquisition variables involved in\nMRI, which greatly impact image quality, lesion conspicuity, and measurement.\nFurthermore, the availability of MRI is variable globally. As with CT, if an MRI is\nperformed, the technical specifications of the scanning sequences used should be\noptimized for the evaluation of the type and site of disease. Furthermore, as with CT,\nthe modality used at follow-up should be the same as was used at baseline and the\nlesions should be measured/assessed on the same pulse sequence. It is beyond the\nscope of the RECIST guidelines to prescribe specific MRI pulse sequence\nparameters for all scanners, body parts, and diseases. Ideally, the same type of\nscanner should be used and the image acquisition protocol should be followed as\nclosely as possible to prior scans. Body scans should be performed with breath-hold\nscanning techniques, if possible.\nPET-CT: At present, the low dose or attenuation correction CT portion of a combined\nPET-CT is not always of optimal diagnostic CT quality for use with RECIST\nmeasurements. However, if the site can document that the CT performed as part of a\nPET-CT is of identical diagnostic quality to a diagnostic CT (with IV and oral contrast),\nthen the CT portion of the PET-CT can be used for RECIST measurements and can\nbe used interchangeably with conventional CT in accurately measuring cancer\nlesions over time. Note, however, that the PET portion of the CT introduces additional\ndata which may bias an investigator if it is not routinely or serially performed.\nUltrasound: Ultrasound is not useful in assessment of lesion size and should not be\nused as a method of measurement. Ultrasound examinations cannot be reproduced\nin their entirety for independent review at a later date and, because they are operator\ndependent, it cannot be guaranteed that the same technique and measurements will\nbe taken from one assessment to the next. If new lesions are identified by ultrasound\nin the course of the study, confirmation by CT or MRI is advised. If there is concern\nabout radiation exposure at CT, MRI may be used instead of CT in selected\ninstances.\nEndoscopy, Laparoscopy: The utilization of these techniques for objective tumor\nevaluation is not advised. However, such techniques may be useful to confirm\ncomplete pathological response when biopsies are obtained or to determine relapse\nin trials where recurrence following complete response (CR) or surgical resection is\nan endpoint.\nTumor markers: Tumor markers alone cannot be used to assess response. If markers\nare initially above the upper normal limit, they must normalize for a patient to be\nconsidered in complete clinical response. Specific guidelines for both CA-125\nresponse (in recurrent ovarian cancer) and PSA response (in recurrent prostate\ncancer) have been published.57-59 In addition, the Gynecologic Cancer Intergroup has\ndeveloped CA-125 progression criteria which are to be integrated with objective\ntumor assessment for use in first-line trials in ovarian cancer.60

\n

Cytology, Histology: These techniques can be used to differentiate between partial\nresponses (PR) and complete responses (CR) in rare cases (e.g., residual lesions in\ntumor types, such as germ cell tumors, where known residual benign tumors can\nremain).\nThe cytological confirmation of the neoplastic origin of any effusion that appears or\nworsens during treatment when the measurable tumor has met criteria for response\nor stable disease is mandatory to differentiate between response or stable disease\n(an effusion may be a side effect of the treatment) and progressive disease.\nFDG-PET: While FDG-PET response assessments need additional study, it is\nsometimes reasonable to incorporate the use of FDG-PET scanning to complement\nCT scanning in assessment of progression (particularly possible 'new' disease). New\nlesions on the basis of FDG-PET imaging can be identified according to the following\nalgorithm:\n•\n•

\n

\n

Negative FDG-PET at baseline, with a positive FDG-PET at follow-up is a sign of\nPD based on a new lesion.\nNo FDG-PET at baseline and a positive FDG-PET at follow-up:\no If the positive FDG-PET at follow-up corresponds to a new site of disease\nconfirmed by CT, this is PD.\no If the positive FDG-PET at follow-up is not confirmed as a new site of disease\non CT, additional follow-up CT scans are needed to determine if there is truly\nprogression occurring at that site (if so, the date of PD will be the date of the\ninitial abnormal FDG-PET scan).\no If the positive FDG-PET at follow-up corresponds to a pre-existing site of\ndisease on CT that is not progressing on the basis of the anatomic images,\nthis is not PD.\nFDG-PET may be used to upgrade a response to a CR in a manner similar to a\nbiopsy in cases where a residual radiographic abnormality is thought to represent\nfibrosis or scarring. The use of FDG-PET in this circumstance should be\nprospectively described in the protocol and supported by disease-specific medical\nliterature for the indication. However, it must be acknowledged that both\napproaches may lead to false positive CR due to limitations of FDG-PET and\nbiopsy resolution/sensitivity.

\n

Note: A ‘positive’ FDG-PET scan lesion means one which is FDG avid with an uptake\ngreater than twice that of the surrounding tissue on the attenuation corrected image.

\n

6.1.4\n6.1.4.1

\n

Response Criteria

\n

Evaluation of Target Lesions

\n

All measurable lesions up to a maximum of 2 lesions per organ and five lesions in\ntotal, representative of all involved organs, should be identified as target lesions and\nrecorded and measured at baseline. Target lesions should be selected on the basis\nof their size (those with the longest diameters), be representative of all involved\norgans, but in addition should be those that lend themselves to reproducible repeated\nmeasurements. It may be the case that, on occasion, the largest lesion does not lend\nitself to reproducible measurement in which circumstance the next largest lesion\nwhich can be measured reproducibly should be selected.

\n

The sum of the diameters (longest for non-nodal lesions, short axis for nodal lesions)\nfor all target lesions will be calculated and reported as the baseline sum diameters. If\nlymph nodes are to be included in the sum, then only the short axis is added into the\nsum. The baseline sum of the diameters will be used as reference to further\ncharacterize any objective tumor regression in the measurable dimension of the\ndisease.\nComplete Response (CR): Disappearance of all target lesions. Any pathological\nlymph nodes (whether target or non-target) must have reduction in short axis to <10\nmm.\nPartial Response (PR): At least a 30% decrease in the sum of the diameters of target\nlesions, taking as reference the baseline sum diameters.\nProgressive Disease (PD): At least a 20% increase in the sum of the diameters of\ntarget lesions, taking as reference the smallest sum on study (this includes the\nbaseline sum if that is the smallest on study). In addition to the relative increase of\n20%, the sum must also demonstrate an absolute increase of at least 5 mm over the\nnadir. (Note: the appearance of one or more new lesions is also considered\nprogression).\nStable Disease (SD): Neither sufficient shrinkage to qualify for PR nor sufficient\nincrease to qualify for PD, taking as reference the smallest sum diameters while on\nstudy. (Note: a change of 20% or more that does not increase the sum of the\ndiameters by 5 mm or more is coded as stable disease).\n6.1.4.2

\n

Evaluation of Non-Target Lesions

\n

All other lesions or sites of disease including any measurable lesions over and above\nthe 5 target lesions should be identified as non-target lesions and should also be\nrecorded at baseline. Measurements of these lesions are not required, but the\npresence or absence of unequivocal progression of each should be noted throughout\nfollow-up.\nComplete Response (CR): Disappearance of all non-target lesions and normalization\nof tumor marker level. All lymph nodes must be non-pathological in size (<10 mm\nshort axis).\nNote: If tumor markers are initially above the upper normal limit, they must normalize\nfor a patient to be considered in complete clinical response.\nNon-CR/Non-PD: Persistence of one or more non-target\nmaintenance of tumor marker level above the normal limits.

\n

lesion(s)

\n

and/or

\n

Progressive Disease (PD): Appearance of one or more new lesions and/or\nunequivocal progression of existing non-target lesions. Unequivocal progression\nshould not normally trump target lesion status. It must be representative of overall\ndisease status change, not a single lesion increase.\nWhen the patient also has measurable disease, there must be an overall level of\nsubstantial worsening in non-target disease such that, even in the presence of SD or\nPR in target disease, the overall tumor burden has increased sufficiently to merit\ndiscontinuation of therapy. A modest “increase” in the size of one or more non-target\nlesions is usually not sufficient to qualify for unequivocal progression status. The

\n

designation of overall progression solely on the basis of change in non-target disease\nin the face of SD or PR of target disease will therefore be extremely rare.\nWhen the patient only has non-measurable disease, the increase in overall disease\nburden should be comparable in magnitude to the increase that would be required to\ndeclare PD for measurable disease: i.e., an increase in tumor burden from “trace” to\n“large”, an increase in nodal disease from “localized” to “widespread”, or an increase\nsufficient to require a change in therapy.\nAlthough a clear progression of “non-target” lesions only is exceptional, the opinion of\nthe treating physician should prevail in such circumstances, and the progression\nstatus should be confirmed at a later time by the review panel (or Principal\nInvestigator).\n6.1.4.3

\n

Evaluation of New Lesions

\n

The appearance of new lesions constitutes Progressive Disease (PD).\n6.1.4.4

\n

Evaluation of Patient’s Best Overall Response

\n

The best overall response is the best response recorded from the start of the\ntreatment until disease progression/recurrence (taking as reference for progressive\ndisease the smallest measurements recorded since the treatment started). The\npatient's best response assignment will depend on the achievement of both\nmeasurement and confirmation criteria.

\n

Table 6-0\nPatients with Measurable Disease (e.g., Target Disease)\nTarget\nLesions

\n

Non-Target\nLesions

\n

New\nLesions

\n

Overall\nResponse

\n

Best Overall Response when\nConfirmation is Required*

\n

CR

\n

CR

\n

No

\n

CR

\n

Confirmation not required

\n

CR

\n

Non-CR/NonPD

\n

No

\n

PR

\n

CR

\n

Not Evaluated

\n

No

\n

PR

\n

PR

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

PR

\n

SD

\n

Non-CR/NonPD/Not\nEvaluated

\n

No

\n

SD

\n

PD

\n

Any

\n

Yes or No

\n

PD

\n

Any

\n

PD**

\n

Yes or No

\n

PD

\n

Any

\n

Any

\n

Yes

\n

PD

\n

Confirmation not required

\n

Confirmation not required

\n

No prior SD, PR or CR

\n

*See RECIST 1.1 manuscript for further details on what is evidence of a new lesion.\n**In exceptional circumstances, unequivocal progression in non-target lesions may be accepted as\ndisease progression.\nNote:

\n

Patients with a global deterioration of health status requiring discontinuation of treatment\nwithout objective evidence of disease progression at that time should be reported as\n“symptomatic deterioration”. Every effort should be made to document the objective\nprogression even after discontinuation of treatment.

\n

Table 6-1\nPatients with Non-Measurable Disease (e.g., Non-Target Disease)\nNon-Target Lesions

\n

New Lesions

\n

Overall Response

\n

CR

\n

No

\n

CR

\n

Non-CR/Non-PD

\n

No

\n

Non-CR/Non-PD*

\n

Not all evaluated

\n

No

\n

Not Evaluated

\n

Unequivocal PD

\n

Yes or No

\n

PD

\n

Any

\n

Yes

\n

PD

\n

*‘Non-CR/Non-PD’ is preferred over ‘stable disease’ for non-target disease since SD is increasingly\nused as an endpoint for assessment of efficacy in some trials so to assign this category when no\nlesions can be measured is not advised.

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

See section 6.1.4 Response Criteria.

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

Duration of overall response: The duration of overall response is measured from the\ntime measurement criteria are met for CR or PR (whichever is first recorded) until the\nfirst date that recurrent or progressive disease is objectively documented (taking as\nreference for PD the smallest measurements recorded since the treatment started).\nThe duration of overall CR is measured from the time measurement criteria are first\nmet for CR until the first date that progressive disease is objectively documented.\nDuration of stable disease: Stable disease is measured from the start of the treatment\nuntil the criteria for progression are met, taking as reference the smallest\nmeasurements recorded since the treatment started, including the baseline\nmeasurements.

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

PFS is defined as the duration of time from time of randomization to time of\nprogression or death, whichever occurs first. A subject who has neither progressed\nnor died will be censored on the date of last tumor assessment.

\n

Study Parameters

\n

TREATMENT MUST BEGIN ≤ 7 WORKING DAYS FROM RANDOMIZATION\nInduction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable

\n

Phase\n(until

\n

toxicity)

\n

Section 5.6^

\n

X

\n

Informed Consent

\n

X

\n

Medical History & Assessment of Baseline\nSigns and Symptoms

\n

X

\n

Physical Exam

\n

X

\n

a

\n

X

\n

a

\n

Vital Signs (Blood Pressure, Heart Rate,\nTemperature) and Weight\nECOG Performance Status

\n

Follow-Up Off\no\nTherapy\n(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a

\n

Eligibility Assessment

\n

Concomitant Meds (see Appendix C)

\n

£

\n

a

\n

X

\n

a

\n

X\n(includes Ht)\na

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

b

\n

X

\n

X

\n

c

\n

X

\n

X

\n

c

\n

X

\n

j

\n

X

\n

X

\n

i

\n

X

\n

X

\n

b

\n

Adverse Events Assessments

\n

X

\n

X

\n

a,i

\n

i

\n

Imaging Scans

\n

X

\n

X

\n

PT with INR

\n

X

\n

Urinalysis

\n

X

\n

CBC with differentials, Platelets

\n

X

\n

a

\n

X

\n

b

\n

X

\n

d

\n

X

\n

Serum Creatinine, Electrolytes (K, Na, Cl,\nCO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT),\nAlkaline Phosphatase, Total Bilirubin,\nMagnesium, Uric Acid.

\n

X

\n

a

\n

X

\n

b

\n

X

\n

X

\n

Fasting Glucose

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

Fasting serum Lipid Profile (triglycerides,\ntotal cholesterol, HDL and LDL)

\n

X

\n

a

\n

X

\n

b

\n

X

\n

e

\n

X

\n

e

\n

X

\n

j

\n

i

\n

a\na

\n

c,d

\n

X

\n

d

\n

X

\n

k

\n

c

\n

X

\n

X

\n

X

\n

e

\n

X

\n

e

\n

X

\n

k

\n

k\nk

\n

j

\n

X

\n

i,m,o

\n

X

\n

Induction Phase (fulvestrant + everolimus or placebo for a maximum of 12 cycles)\nProcedure

\n

Pre-Study

\n

Cycle 1

\n

Cycle 1

\n

Day 1*

\n

Day 15

\n

Day 1 Each\nSubsequent\nCycle*

\n

Every 12\nweeks

\n

End of\nInduction\nPhase

\n

Continuation\nPhase\n(until

\n

<OR>

\n

progression or

\n

End of\nTreatment

\n

unacceptable\ntoxicity)

\n

Section 5.6^

\n

HBV-DNA, HbsAg, HBsAb, HBcAb, HCVRNA-PCR

\n

(every 3\nmonths for total\nof 3 yrs from\ndate of\nrandomization)

\n

a,f\nf,g

\n

X

\n

f,h

\n

X

\n

X

\n

HCV RNA-PCR

\n

X

\n

PFTs with DLCO as medically indicated

\n

Follow-Up Off\no\nTherapy

\n

X

\n

HBV DNA\nStudy Drug Compliance (Pill Diary)

\n

£

\n

X

\n

f,g

\n

X

\n

f,h

\n

X

\n

X

\n

k\nk

\n

X

\n

l

\n

X

\n

n

\n

a: ≤ 4 weeks of randomization; if assessments required ≤ 7 days of Cycle 1 Day 1 (C1D1), they do not need to be repeated (includes labs).\nb: ≤ 7 days prior to the start of C1D1.\nc: +/- 72 hour window allowed prior to D1 of each subsequent cycle after the first cycle for scheduled therapy/tests/visits. Delay due to holidays, weekends,\nbad weather or other unforeseen circumstances will be permitted.\nd: In the event of grade 3 or 4 hematologic toxicity, CBC with differential and platelet count will be obtained every 1-3 days until there is evidence of\nhematologic recovery.\ne: +/- 72 hours prior to Cycle 2 Day 1 then approximately every 12 weeks during treatment (and more frequently as clinically indicated), and at end of\ntreatment.\nf: All patients should be screened for hepatitis risk factors and any past illnesses of hepatitis B and hepatitis C infection (see Section 7.1.1). All patients with a\npositive medical history per Section 7.1.1 need hepatitis testing as noted on above table. It is highly recommended that patients positive for HBV-DNA or\nHBsAg are treated prophylactically with an antiviral (e.g., Lamivudine) for 1-2 weeks prior to receiving study drug (see Table 5-3). The antiviral treatment\nshould continue throughout the entire study period and for at least 4 weeks after the last dose of everolimus.\ng: Patients on antiviral prophylaxis treatment or positive HBV antibodies should be tested for HBV-DNA ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior\nto D1 of each subsequent cycle to monitor for reactivation. See Table 5-4 for reactivation instructions.\nh: Patients with positive HCV RNA-PCR results at screening and/or a history of past infection (even if treated and considered ‘cured’) should have HCV RNAPCR testing performed on ≤ 7 days prior to the start of C1D1 and +/- 72 hrs prior to D1 of each subsequent cycle to monitor for flare. Everolimus must be\ndiscontinued if HCV flare is confirmed according to the guidance in Table 5-5.\ni: Tumor measurements may be made using physical examination, CT Scans or MRI. Tumor assessments will be performed every 12 weeks, +/- 1 week\n(every 3 months). Imaging will include chest and abdomen. Bone Scans and Brain CT/MRI may be performed as clinically indicated. Scans do not have to be\nrepeated once disease progression is documented.\nj: Adverse events related to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last dose of study therapy (fulvestrant and/or\neverolimus/placebo) or until ≤ grade 1 or if the grade is >1, the event must be permanent and stable. Please note- Serious adverse events >30 days after last\ndose of fulvestrant and/or everolimus/placebo are not reported unless the event may be related to everolimus/placebo.

\n

k: CBC and chemistry may be used to assess ongoing toxicity but are not required in the Continuation Phase for patients who receive fulvestrant alone.\nPatients who continue fulvestrant with everolimus should periodically have CBC, chemistries, fasting glucose, fasting lipids, HBV DNA, HCV RNA-PCR per\nlabeling guidelines.\nl: Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the Continuation Phase.\nm: All patients including those that discontinue protocol therapy will be followed for 3 years from the time of randomization. Patients that have not progressed\nduring the Induction or Continuation Phase will continue to have imaging scans completed every 12 weeks, +/- 1 week (every 3 months) until documented\nprogression.\nn: PFTs with DLCO as medically indicated only, (PFTs are not otherwise required during course of study).\no: Follow every 3 months for disease progression and survival. Initiation of any new systemic therapy will also be documented.\n* Cycle 1, Day 1 is defined as the first day on which fulvestrant is given in combination with placebo/everolimus (the second fulvestrant dose is given on day 15\nof the first cycle only). Day 1 of each additional cycle is defined as the day in which fulvestrant is given in combination with everolimus/placebo.\n^ End of Induction/End of Treatment should be performed within 30 days of last dose of fulvestrant.\n£ Continuation Phase: Patients in the Continuation Phase should continue to receive fulvestrant alone (if originally randomized to placebo) or in combination\nwith everolimus (if originally randomized to everolimus) at the same dose and schedule (+/- 1 week window for scheduled therapy/tests/visits; delays due to\nholidays, weekends, bad weather or other unforeseen circumstances will be permitted) until disease progression or unacceptable toxicity.

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

See section 7 Study Parameters.

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

Written informed consent must be obtained prior to any study required procedures that\nwould not have been performed as part of normal patient care at the site.

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

Prior to randomization, patients will complete the informed consent process and have all\nrequired protocol assessments completed in order to assess eligibility requirements. All\nprocedures and an assessment of eligibility should be documented in the patient record.\nWithin ≤ 4 weeks of randomization to protocol therapy:\n•

\n

Medical history

\n

\n

Assessment of baseline signs and symptoms

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate and temperature, height and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Imaging scans for complete disease assessment. Care should be taken to continue\nto use the same evaluation method during the study as used for initial evaluation.\nSee Section 6 for additional details.

\n

\n

PT with INR

\n

\n

Urinalysis

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

A detailed assessment of hepatitis B/C medical history and risk factors must be done for\nall patients. Patients with positive hepatitis B and/or hepatitis C test results must begin a\ncourse of antivirals within 1-2 weeks prior to the first dose of everolimus (as outlined in\nSection 5.3.2.2 and 5.3.2.3).\nTesting for hepatitis B viral load and serologic markers: HBV-DNA, HBsAg, HBsAb,\nHBcAb and HCV RNA-PCR are required at screening for all patients in the following risk\ncategories:\no All patients who have lived in Asia, Africa, Central and South America, Eastern\nEurope, Spain, Portugal, and Greece.\n[http://wwwnc.cdc.gov/travel/yellowbook/2012/chapter-3-infectious-diseasesrelated-to-travel/hepatitis-b.htm]

\n

o Patients with any of the following risk factors:\n• known or suspected past hepatitis B infection\n• blood transfusion(s) prior to 1990\n• current or prior IV drug users\n• current or prior dialysis\n• household contact with hepatitis B infected patient(s)\n• current or prior high-risk sexual activity\n• body piercing or tattoos\n• mother known to have hepatitis B\n• history suggestive of hepatitis B infection, e.g., dark urine, jaundice, right\nupper quadrant pain.\no Additional patients at the discretion of the investigator

\n

Testing for hepatitis C should be performed using quantitative RNA-PCR at screening for\nall patients in the following risk categories:\no\no\no\no\no\no\no\no

\n

known or suspected past hepatitis C infection (including patients with past\ninterferon ‘curative’ treatment)\nblood transfusions prior to 1990\ncurrent or prior IV drug users\ncurrent or prior dialysis\nhousehold contact of hepatitis C infected patient(s)\ncurrent or prior high-risk sexual activity\nbody piercing or tattoos\nAt the discretion of the investigator, additional patients may also be tested for\nhepatitis C.

\n

Final determination of eligibility and randomization to therapy should be done only after\nall assessments are completed.

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

Day 1 of each cycle is defined as the day in which fulvestrant is given, including the first\nfulvestrant dose, third fulvestrant dose, and every dose thereafter (the second fulvestrant\ndoses is given on day 15 of the first cycle only). Note: If patient previously received one\ncycle of fulvestrant (day 1 and day 15) prior to study entry as permitted in Inclusion\nCriteria #8, patient should receive fulvestrant 500 mg on day 1 only.\nPatients will be assessed continually for toxicity and study continuation. Protocol therapy\ndoses should be calculated and modified as per Section 5. Assessment of disease for\nresponse should be performed as per Section 6.\nOne cycle in the Induction Phase is equal to 28 days. Patients are treated for a\nmaximum of 12 cycles in the Induction Phase.\n7.1.2.1

\n

Within 7 Days of Cycle 1 Day 1

\n

Note: The following assessments do not have to be repeated if the pre-study\nassessments were performed within ≤ 7 days of Cycle 1 Day 1.

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). AE assessment should begin after the first dose of study\nmedication has been administered.

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered ‘cured’) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

7.1.2.2

\n

Cycle 1 Day 15

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature, and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously). (see Section 5.3 for dose modification guidelines)

\n

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differentia and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.3

\n

Cycle 2 (and each subsequent cycle) Day 1

\n

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment and dose modifications as necessary (AEs should be\nmonitored continuously, see Section 5.3 for dose modification guidelines).

\n

\n

CBC with differential and platelets. In the event of grade 3 or 4 hematologic toxicity,\nCBC with differential and platelet count will be obtained every 1-3 days until there is\nevidence of hematologic recovery.

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose (Cycle 2 Day 1, then every 12 weeks during treatment, and more\nfrequently as clinically indicated)

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL) (Cycle 2\nDay 1, then every 12 weeks during treatment, and more frequently as clinically\nindicated)

\n

\n

Patients on antiviral prophylaxis treatment or positive HBV antibodies should be\ntested for HBV-DNA on Cycle 1 Day 1 and Day 1 of all subsequent cycles (every 28\ndays) to monitor for re-activation. If re-activation is confirmed, everolimus must be\ninterrupted or discontinued according to the guidance in Table 5-4. Patients with\npositive HCV RNA-PCR results at screening and/or a history of past infection (even if\ntreated and considered ‘cured’) should have HCV RNA-PCR testing performed on\nCycle 1 Day 1 and Day 1 of all subsequent cycles (every 28 days) to monitor for\nflare. Everolimus must be discontinued if HCV reactivation is confirmed according to\nthe guidance in Table 5-5.

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

7.1.2.4

\n

Every 12 Weeks

\n

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the Induction\nPhase. Scans should be repeated at the assigned intervals regardless of cycle or\ntreatment delays.

\n

\n

Fasting Glucose and Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL\nand LDL) to be done every 12 weeks during Induction Phase (and more frequently\nas clinically indicated)

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

End of Induction Phase <OR> End of Treatment

\n

All patients will have the following assessments completed whether they are moving into\nthe Continuation Phase or no longer will be receiving treatment and are moving into\nFollow-Up Off-Therapy due to reasons noted in Sections 5.5 or 5.6. The assessments\nshould be completed within 30 days of last dose of fulvestrant and before moving from\nthe Induction Phase into the Continuation Phase or before moving directly into the\nFollow-Up Phase. (Note: Day 1 of the Continuation Phase should start on D29 of cycle\n12 if the assessments below are completed in order to maintain the 28 day fulvestrant\ndosing schedule).\n•

\n

Physical examination

\n

\n

Concomitant medication assessment (see Appendix C for list of excluded or\nmedications requiring monitoring on study)

\n

\n

Vital signs, including blood pressure, heart rate, temperature and weight

\n

\n

Assessment of ECOG performance status

\n

\n

Adverse event assessment. All patients will be followed for toxicity assessment for\n30 days after the last dose of study therapy (fulvestrant and/or everolimus/placebo)\nor until resolution to ≤ grade 1 attributed to study therapy (or if >grade 1, event must\nbe permanent and stable). Serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus/placebo are not reported unless the event may be\nrelated to everolimus/placebo.

\n

\n

Tumor evaluation if due per every 12 weeks +/- 1 week (every 3 months) evaluation\nschedule.

\n

\n

CBC with differential and platelets

\n

\n

Serum Creatinine, Electrolytes (K, Na, Cl, CO2), Ca, BUN, Albumin, Total Protein,\nPhosphorus, AST (SGOT), ALT (SGPT), Alkaline Phosphatase, Total Bilirubin,\nMagnesium and Uric Acid

\n

\n

Fasting Glucose

\n

\n

Fasting Serum Lipid Profile (triglycerides, total cholesterol, HDL and LDL)

\n

\n

Study Drug Compliance (Pill Diary) for everolimus/placebo

\n

Patients in the Continuation Phase should continue to receive fulvestrant alone (if\noriginally randomized to placebo) or in combination with everolimus (if originally\nrandomized to everolimus) at the same dose and schedule until disease progression or\nunacceptable toxicity.\nPatients that are moving from the Induction Phase into Follow-Up Off Therapy should\nnot receive further investigational therapies for at least 30 days after the last dose of\nstudy drug, if possible, in order to eliminate overlapping toxicity.

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

Patients with no evidence of disease progression after 12 cycles of treatment (Induction\nPhase) will be unblinded and proceed to the Continuation Phase. Patients in the\nContinuation Phase should continue to receive fulvestrant alone (if originally randomized\nto placebo) or in combination with everolimus (if originally randomized to everolimus) at\nthe same dose and schedule until disease progression is documented or unacceptable\ntoxicity. Once progression is documented, patients will move into Follow-Up Off Therapy.\nOne cycle in the Continuation Phase is equal to 28 days. Day 1 of the Continuation\nPhase should start 28 days (D29) after the last dose of fulvestrant was given during\nCycle 12 in the Induction Phase.\nAll adverse events that are related to fulvestrant and/or everolimus will be followed for 30\ndays after the last dose of study therapy (fulvestrant and/or everolimus) until ≤ grade 1\nor if the grade is >1, the event must be permanent and stable.\n•

\n

CBC and chemistry may be used to monitor any ongoing toxicities, but are not\nrequired for patients that receive fulvestrant alone.

\n

\n

Patients who continue fulvestrant in combination with everolimus should periodically\nhave CBC, chemistries, fasting glucose, fasting serum lipids, HBV DNA, and HCV\nRNA-PCR per labeling guidelines.

\n

\n

Study Drug Compliance (Pill Diary) for those patients who receive everolimus in the\nContinuation Phase.

\n

After the Continuation Phase, serious adverse events >30 days after last dose of\nfulvestrant and/or everolimus are not reported unless the event may be related to\neverolimus.\n7.1.4.1\n•

\n

Every 12 Weeks

\n

Tumor evaluation every 12 weeks, +/- 1 week (every 3 months) during the\nContinuation Phase until disease progression is documented.

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

All patients, including those who discontinue protocol therapy, will be followed for 3\nyears from the time of randomization. Patients that did not progress during the Induction\nor Continuation Phase will continue to have imaging scans completed every 3 months\nuntil documented progression. Patients will then be followed for survival. Initiation of any\nnew systemic therapy will also be documented. Patients that have adverse events\nrelated to fulvestrant and/or everolimus/placebo will be followed for 30 days after the last\ndose of study therapy (fulvestrant and/or everolimus/placebo) until ≤ grade 1 or if the\ngrade is >1, the event must be permanent and stable. Serious adverse events >30 days\nafter last dose of fulvestrant and/or everolimus/placebo are not reported unless the event\nmay be related to everolimus/placebo.

\n

Drug Formulation and Procurement

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

See section 8 Drug Formulation and Procurement.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_8_1", + "text": "

See section 8.1 Everolimus.

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

Full instructions for investigator sites and investigational pharmacies will be available in\nseparate protocol-specific documents. The supply of everolimus or placebo will be\nshipped directly to the local investigator. Drug ordering procedures will be provided in\nsupplemental study materials.\n8.1.1.1

\n

How Supplied

\n

Everolimus and an identically appearing placebo will be provided by Novartis.\nEverolimus is formulated as tablets for oral administration of 5 mg strength. Tablets are\nblister-packed under aluminum foil in units of 10 tablets per blister card, which should be\nopened only at the time of administration as drug is both hygroscopic and light-sensitive.\nEach tablet contains as inactive ingredients: butylhyroxytoluene/butylated\nhydroxytoluene (BHT), magnesium stearate, lactose monohydrate, hypromellose,\ncrospovidone and lactose anhydrous.\nMedication labels will comply with US legal requirements and be printed in English. They\nwill supply no information about the patient. The storage conditions for study drug will be\ndescribed on the medication label.

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

Everolimus should be stored at room temperature between 20°C to 25°C (68°F to 77°F).\nAll investigational products must be kept in a secure place under appropriate storage\nconditions. A description of the appropriate storage and shipment conditions is specified\non the investigational product label and investigator brochure. The stored study drug\nsupplies must be accessible to authorized staff only. The storage area must also have\nadequate control of temperature in order to maintain stability and potency of study drug\nsupplies. The tablets should be stored in the original pack until use. For further\ninformation, investigators should refer to the current Investigators Brochure (IB).

\n

8.1.3\n8.1.3.1

\n

Handling, Dispensing and Administration

\n

Handling

\n

No special precautions are necessary when handling intact tablets. Avoid contact with\nskin and eyes. Wash hands after use. The risk to health in normal handling of tablets is\nvery low. Exposure to dust from crushed tablets may cause adverse health effects.\n8.1.3.2

\n

Dispensing

\n

Drug should be dispensed in original packaging. If other packaging is required by\ninstitutional policy, this procedure will need to be approved by PrECOG, or their\ndesignee, prior to proceeding. The PrECOG Site Contact should be contacted for further

\n

instruction. Investigational product records should be kept as per Section 8.1.5 and\ninstitutional policies.\n8.1.3.3

\n

Administration

\n

Patients should be instructed to take their assigned, once-a-day oral dose of\neverolimus/placebo at the same time each morning.\n•

\n

Everolimus/placebo dose may be taken with or without food.

\n

\n

Patients should be instructed to swallow the capsules whole and not chew them.

\n

\n

Vomited doses should not be replaced.

\n

\n

If the patient forgets to take the medication and remembers by 10 PM, they may take\nthe dose. Otherwise, skip that dose and begin as usual the next day.

\n

In cases where tablets cannot be swallowed, the tablets should be disintegrated in water\njust prior to being taken. Approximately 30 mL (2 tablespoons) of water should be put\ninto a glass. The tablets should then be added and the contents stirred gently (for a\nmaximum of 7 minutes) until the tablets are disintegrated. The contents should then be\ndrunk.\nPatients should be given instructions on correct dosing based on study requirements\nand toxicity management (dose modifications). All changes to recommended dosing\nregimen/schedule should be documented in the patient record. Documentation of patient\ninstructions for dosing changes should also be in source records.\nPatients should be instructed to record the reason for any missed doses and report to\nthe investigator at the next visit. If a dose is vomited, that dose should not be replaced,\n(and recorded as a vomited dose).\nCompliance with therapy will be assessed at the beginning of each cycle. Patients will be\ngiven a diary (see Appendix F for an Example Patient Pill Diary) for recording of doses of\nstudy drug as provided by each study site. A copy of the patient diary will be provided to\nsites in study materials.\n8.1.3.4

\n

Special Instructions for Unblinding

\n

Patients on study therapy and all site study staff will remain blinded as to the assignment\nof everolimus or placebo. Patients who have not had progressive disease and remain on\nstudy after 12 cycles are unblinded and continue fulvestrant alone (if originally\nrandomized to placebo) or in combination with everolimus (if originally randomized to\neverolimus) at the same dose and schedule in the Continuation Phase. If an emergency\nsituation arises and the patient must be unblinded during the Induction Phase (Cycles 112), the Medical Monitor for the study must be consulted.\nEmergency Unblinding for Patients during the Induction Phase (within Cycles 1-12):\nUnblinding is a serious action that should be restricted in order to limit potential study\nbias. The breaking of the blinding code in all cases will render the patient off-protocol.\nThe Medical Monitor for the study must be involved in the decision to unblind and must\ngrant approval for unblinding any individual. Requests for unblinding will only be\nconsidered in the event of an emergency or severe adverse reaction where identification

\n

of the medication is considered important for the welfare of the patient, and the rationale\nfor unblinding is applicable to the situation. All patients should be provided emergency\nmedical care by the treating physician and appropriate therapies for the medical\nemergency should be initiated prior to the request for unblinding.\nFor example, a Serious Adverse Event (SAE) possibly, probably or definitely related to\nthe study drug occurs during the trial and the treatment of the SAE would be influenced\nby whether he/she received everolimus or placebo. Unblinding is typically not necessary\nif the medical management of the patient would not be materially altered by knowledge\nof the treatment assignment. In the event that accidental unblinding occurs, the Principal\nInvestigator should report the occurrence promptly to the Medical Monitor and document\nthe incident in the patient records. All unblinding will be recorded as a protocol deviation.\nIf a participant is in a life-threatening situation in which knowledge of the treatment is\ncrucial to care AND the Medical Monitor cannot be reached immediately, the PM should\nbe contacted to facilitate the unblinding process. A report including the unblinding details\nwill be generated after the patient has been unblinded and will be sent to the site for\ndocumentation (refer to Study Reference Manual for Unblinding Process). Report\ninformation will include but is not limited to:\n•\n•\n•\n•\n•

\n

ID number of the participant whose treatment assignment was unblinded\nDate of unblinding and reconciliation of study drug in site and patient records\nReason for unblinding, including initial SAE report\nPerson responsible for unblinding\nList of persons who are unblinded (e.g. study staff)

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

See section 8.1.3 Handling, Dispensing and Administration.

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

The most common adverse reactions (incidence ≥ 10%) reported for everolimus include\nstomatitis, rash, fatigue, asthenia, diarrhea, anorexia, nausea, mucosal inflammation,\nvomiting, cough, peripheral edema, infections, dry skin, epistaxis, pruritus, and dyspnea.\nThe most commonly reported grade 3-4 adverse reactions (incidence ≥ 2%) reported for\neverolimus include infections, stomatitis, fatigue, and pneumonitis.

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

Investigational product dispensing record/inventory logs and copies of signed packing\nlists must be maintained at the investigational site for everolimus. It is the responsibility\nof the Investigator to ensure that a current record of investigational product disposition is\nmaintained at each study site where investigational product is stored and/or dispensed.\nRecords must comply with applicable regulations and guidelines, and should include:\n•

\n

Amount received and placed in storage area.

\n

\n

Amount currently in storage area.

\n

\n

Label ID number or batch number.

\n

\n

Dates and initials of person responsible for each investigational product inventory\nentry/movement.

\n

\n

Amount dispensed to and returned by each patient, including unique patient\nidentifiers.

\n

\n

Amount transferred to another area for dispensing or storage.

\n

\n

Non-study disposition (e.g., wasted, broken).

\n

\n

Amount returned to manufacturer, if applicable

\n

\n

Amount destroyed at study site, if applicable

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

Investigational product should be maintained at the site for accountability purposes.\nSites will be referred to the study pharmacy manual for instructions regarding the return\nor destruction of everolimus study drug supply (site’s drug destruction policy must be\nreviewed and approved by PrECOG before any study drug can be destroyed at a site).\nPatients will be instructed to return all blister packs (empty or partially used) to the study\ncenter.

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

8.2.1

\n

Packaging and Labeling

\n

Fulvestrant is commercially available and approved and is indicated for the treatment of\nHR-positive metastatic breast cancer in postmenopausal women whose disease has\nreturned or progressed following antiestrogen therapy.\nInvestigators should review the approved Package Insert (PI) (http://www.faslodex.com/\nfaslodex-prescribing-info/index.aspx) for full information on storage, handling,\npreparation and stability.\nFulvestrant is supplied as:\nOne clear neutral glass (Type 1) barrel containing 250 mg/5 mL (50 mg/mL) Injection for\nintramuscular injection and fitted with a tamper-evident closure. NDC 0310-0720-50.\n(Note: Patients will be receiving 500 mg doses IM therefore 2 injections of 250 mg will\nbe required for one dose.)\nThe syringes are presented in a tray with polystyrene plunger rod and safety needles\n(SafetyGlide™) for connection to the barrel.\nEach injection contains as inactive ingredients: Alcohol, USP, Benzyl Alcohol, NF, and\nBenzyl Benzoate, USP as co-solvents, and Castor Oil, USP as a co-solvent and release\nrate modifier.

\n

8.2.2\n8.2.2.1

\n

Handling and Dispensing

\n

Storage Requirements/Stability

\n

Refrigerate 2°-8°C (36°-46°F). To protect from light, store in the original carton until time\nof use.\n8.2.2.2

\n

Preparation and Administration

\n

Fulvestrant should be disposed of or destroyed as per written institutional policies and\nper recommendations in the current approved Package Insert. To help avoid infectious\ndiseases due to accidental needle sticks, contaminated needles should not be recapped\nor removed, unless there is no alternative or that such action is required by a specific\nmedical procedure.\nWARNING: - Do not autoclave safety needle before use. Hands must remain\nbehind the needle at all times during use and disposal.\nDirections:\n(Source: Faslodex® Package Insert 1621903 Rev 12/11)\n• Remove the glass syringe barrel from tray and check that it is not damaged\n• Remove perforated patient record label from syringe\n• Peel open the safety needle outer packaging.\n• Break the seal of the white plastic cover on the syringe luer connector to remove the\ncover with the attached rubber tip cap (Figure 1).\n• Twist to lock the needle to the luer container.\n• Remove the needle sheath. Pull shield straight off needle to avoid damaging needle\npoint.\n• Remove excess gas from the syringe.\n• Administer intramuscularly slowly in the buttock. Administer injection following\npackage instruction. For user convenience, the needle ‘bevel up’ position is\norientated to the lever arm (Figure 3).\n• Immediately activate needle protection device upon withdrawal from patient by\npushing lever arm completely forward until the tip is fully covered (Figure 2).\n• Visually confirm that the lever arm has fully advanced and the needle tip is covered.\nIf unable to activate, discard immediately into an approved sharps collector.\nActivation of the protective mechanism may cause minimal splatter of fluid that may\nremain on the needle after injection. For greatest safety, use a one-handed\ntechnique and activate away from self and others.\n• If the 250 mg/5 mL formulation is used, repeat the above steps for the second\nsyringe. After single use, discard in an approved sharps collector in accordance with\napplicable regulations and institutional policy.\n• Review the official package insert for more information regarding the use of the\nSafetyGlide Needle.

\n

8.2.3

\n

Side Effects

\n

The most commonly reported adverse experiences in the Faslodex® treatment groups,\nregardless of the investigator’s assessment of causality, were gastrointestinal symptoms\n(including nausea, vomiting, constipation, diarrhea and abdominal pain), headache, back\npain, vasodilatation (hot flushes), and pharyngitis.\nInjection site reactions with mild transient pain and inflammation were seen with\nFaslodex® and occurred in 7% of patients (1% of treatments) given the single 5 mL\ninjection (predominately European Trial) and in 27% of patients (4.6% of treatments)\ngiven the 2 x 2.5 mL injections (North American Trial).\nOther adverse events reported as drug-related and seen infrequently (<1%) include\nthromboembolic phenomena, myalgia, vertigo, leukopenia and hypersensitivity reactions\nincluding angioedema and urticaria. Vaginal bleeding has been reported infrequently\n(<1%), mainly in patients during the first 6 weeks after changing from existing hormonal\ntherapy to treatment with Faslodex® If bleeding persists, further evaluation should be\nconsidered.

\n

Statistical Considerations

\n

The efficacy endpoints will be assessed among all eligible patients who receive protocol\ntherapy. Safety endpoints will be assessed among all treated patients, regardless of\neligibility.

\n

9.1

\n

Primary Efficacy Endpoint

\n

The primary efficacy endpoint is progression-free survival (PFS). PFS is defined as the\ntime from randomization to documented disease progression or death. Based on results\nfrom the CONFIRM trial, median PFS among patients with AI-resistant disease on\nfulvestrant alone is 5.4 months. AI resistant disease is defined as: patients who have\neither relapsed while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane) or have progressive disease while receiving an\naromatase inhibitor for metastatic disease. (Patients previously treated with two or more\nprior cycles of fulvestrant are not eligible. Patients who have received one prior cycle\n(day 1 and day 15) of fulvestrant within 28 days of randomization are eligible so long as\nthey meet other eligibility criteria). Randomization will be 1:1, stratified for balancing\npurposes using ECOG performance status (0 vs. 1), presence of measurable disease\n(yes vs. no), and prior chemotherapy (yes vs. no).\nWe hypothesize that the addition of everolimus to fulvestrant will result in an\nimprovement in median PFS to 9.2 months. A one-sided stratified logrank test with a\ntype I error rate of 10% will be used to evaluate whether the addition of everolimus\nshows promising improvement in PFS relative to fulvestrant alone. To have 90% power\nto detect the hypothesized improvement, enrollment of approximately 120 eligible\npatients (60 per arm) and full information of 98 events (deaths or progressions) are\nrequired. Allowing up to 10 patients to be ineligible or to not start study treatment,\napproximately 130 patients will need to be enrolled. With accrual of approximately 130\npatients in 12 months, the required 98 events are expected to occur approximately 12\nmonths after accrual is completed. Other endpoints that will be evaluated include clinical\nbenefit rate (proportion stable or responding for at least 6 months), objective response\nrate (CR+PR), time to progression (TTP; defined as the time from randomization until\nprogression of the disease), and overall survival (OS; defined as the time from\nrandomization until death or censored at the date of last follow-up).\nPFS will be evaluated using the stratified log-rank test described above, as will TTP and\nOS. Kaplan-Meier plots will be used to graphically portray these time-to-event endpoints.\nClinical benefit rate and objective response rates will be compared between arms using\nFisher’s exact tests. 90% exact binomial confidence intervals on the rates will be\nprovided.

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

See section 9 Statistical Considerations.

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

See section 9.1 Primary Endpoint Analysis.

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

A descriptive comparison of overall toxicity and of grade 3-4 toxicity in the combination\narm and the fulvestrant arm will be provided. Assuming 65 patients are treated on each\narm, the exact binomial 90% confidence interval on the rate of severe toxicities will be no\nwider than 22% (+/- 11%). The probabilities of observing a rare toxicity (true rate of 5%)\nwill be 96% on each arm.

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

Other endpoints that will be evaluated include overall survival, time to progression, and\nobjective response rate. Overall survival will be characterized using Kaplan-Meier plots\nand other descriptive metrics. The objective response rate will be provided for each arm,\nwith 90% exact binomial confidence intervals. Median time to progression will be\nestimated for each arm.

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

10 Adverse Event Reporting

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

10.1 Collection of Safety Information\nAdverse Event (AE) is defined as any new untoward medical occurrence or worsening\nof a pre-existing medical condition in a patient administered a medicinal product in a\nclinical investigation and which does not necessarily have a causal relationship with this\ntreatment. An AE can therefore be any unfavorable and unintended sign (including an\nabnormal laboratory finding, for example), symptom, or disease temporally associated\nwith the use of a product (investigational or marketed), whether or not considered related\nto the product (investigational or marketed). Abnormal laboratory values or test results\nconstitute adverse events only if they induce clinical signs and symptoms, are\nconsidered clinically significant, or require therapy.\nFollowing written consent to participate in the study, all serious AEs should be collected\non a patient. The collection of non-serious AE information should begin at initiation of\ntherapy.\nAll identified AEs must be recorded and described on the appropriate page of the Case\nReport Form (CRF). If known, the diagnosis of the underlying illness or disorder should\nbe recorded, rather than individual symptoms. The following information should be\ndocumented for all AEs: date of onset and resolution, severity of the event; the\ninvestigator’s opinion of the relationship to investigational product (see definitions\nbelow); treatment required for the AE; cause of the event (if known); and information\nregarding resolution/outcome.\nSeverity\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0 (see Appendix E).\nAttribution\nThe following categories and definitions of causal relationship or attribution to study drug\nshould be used to assess Adverse Events:\n•

\n

Definite: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to withdrawal of study drug (dechallenge) and recurs with\nrechallenge, if clinically feasible.

\n

\n

Probable: There is a reasonable causal relationship between the study drug and the\nevent. The event responds to dechallenge. Rechallenge is not required.

\n

\n

Possible: There is a reasonable causal relationship between the study drug and the\nevent. Dechallenge information is lacking or unclear.

\n

\n

Unlikely: There is doubtful causal relationship between the study drug and the event.

\n

\n

Unrelated: There is clearly not a causal relationship between the study drug and the\nevent or there is a causal relationship between another drug, concurrent disease, or\ncircumstances and the event.

\n

Categories ‘Definite’, ‘probable’ and ‘possible’ are considered study drug related.\nCategories ‘not likely’ and ‘not related’ are considered not study drug-related.\nThe development of a new cancer should be regarded as an AE. New cancers are those\nthat are not the primary reason for administration of study treatment and have been\nidentified after inclusion of the patient into the clinical study.\nAEs related to fulvestrant and/or everolimus/placebo will be followed for 30 days\nafter the last dose of study therapy (fulvestrant and/or everolimus/placebo) until ≤\ngrade 1 or stabilization, and reported as SAEs if they become serious. Serious\nadverse events >30 days after last dose of fulvestrant and/or everolimus/placebo\nare not reported unless the event may be related to everolimus/placebo.

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

10.2 Handling of Serious Adverse Events (SAEs)

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

10.2.1 SAE Definitions\nA serious AE is any untoward medical occurrence occurring after informed consent is\ngranted or that at any dose:\n•

\n

results in death,

\n

\n

is life-threatening (defined as an event in which the study patient was at risk of death\nat the time of the event; it does not refer to an event which hypothetically might have\ncaused death if it were more severe),

\n

\n

requires inpatient hospitalization or causes prolongation of existing hospitalization,

\n

\n

results in persistent or significant disability/incapacity,

\n

\n

is a congenital anomaly/birth defect,

\n

\n

is an important medical event (defined as a medical event(s) that may not be\nimmediately life-threatening or result in death or hospitalization but, based upon\nappropriate medical and scientific judgment, may jeopardize the patient or may\nrequire intervention (e.g., medical, surgical) to prevent one of the other serious\noutcomes listed in the definition above.)\nExamples of such events include, but are not limited to, intensive treatment in an\nemergency room or at home for allergic bronchospasm; blood dyscrasias or\nconvulsions that do not result in hospitalization.

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

10.2.2 SAE Reporting Requirements\nAll serious adverse events require expeditious handling and reporting to comply with\nregulatory requirements. The Principal Investigator has the obligation to report all\nserious adverse events to PrECOG, or their designee. A study specific SAE form to be\nutilized for SAE reporting will be provided with supplemental study materials.

\n

All serious adverse events that occur either during the study period (Induction and/or\nContinuation) or within 30 days of discontinuation of dosing regardless of event\nrelationship to the study medications (fulvestrant and/or everolimus/placebo) should be\nreported to PrECOG, or their designee within 24 hours of the investigator’s knowledge of\nthe event or, when the event occurs on a weekend or national holiday, at the latest on\nthe following working day. All deaths during treatment or within 30 days following\ncompletion of active protocol therapy must be reported. Serious adverse events that\noccur >30 days from last dose of fulvestrant and/or everolimus/placebo and are judged\nrelated to the everolimus/placebo (definitely, probably or possibly) must be reported to\nPrECOG, or their designee using the 24 hour timeline noted above. If only limited\ninformation is initially available, follow-up reports are required. Serious adverse events\nthat occur >30 days from last dose of fulvestrant and are judged to be related to\nfulvestrant will follow normal reporting mechanisms for commercial drugs.\nSAE Hotline Phone Number:\n610-354-0404 during normal business hours (8:30 AM – 5 PM EST)\n484-574-2367 after normal business hours (after 5 PM EST)\nSAE Fax Number:\n888-801-8795\nPrECOG will notify Novartis Pharmaceuticals Drug Safety and Epidemiology Department\n(DS&E) of all SAE’s within 24 hours of the Awareness Date. Relevant follow-up\ninformation will be provided to Novartis DS&E as soon as it becomes available.\nIn addition, Investigators should also report event(s) to their IRB as required.\nCollection of complete information concerning SAEs is extremely important. Full\ndescriptions of each event will be followed. Thus, follow-up information which becomes\navailable as the SAE evolves, as well as supporting documentation (e.g., hospital\ndischarge summaries and autopsy reports), should be collected subsequently, if not\navailable at the time of the initial report, and immediately sent using the same procedure\nas the initial SAE report. The original and all follow-up SAEs form must be kept on file at\nthe study site.\nFor Comparator Drugs/Secondary Suspects (Concomitant Medications), all serious\nadverse experiences will be forwarded to the product manufacturer by PrECOG (or their\ndesignee), if applicable.

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

10.3 Reporting of Second Primary Cancers\nNew cancers are those that are not the primary reason for administration of study\ntreatment and have been identified after inclusion of the patient into the clinical study.\nAll cases of new primary cancers that occur during or after protocol treatment must be\nreported to PrECOG within 30 days of diagnosis, regardless of relationship to protocol\ntreatment. Secondary primary malignancies should also be reported as a SAE. This form\nis not for use for reporting recurrence or development of metastatic disease. A copy of\nthe pathology report, if applicable, should be sent, if available.\nNote: Once data regarding survival and remission status are no longer required by the\nprotocol, no follow-up data should be submitted, including the PrECOG Second Primary\nForm.

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

11 Administrative

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

11.1 Protocol Compliance\nThe study shall be conducted as described in this protocol. All revisions to the protocol\nmust be discussed with, and be prepared by PrECOG and/or representatives. The\nInvestigator should not implement any deviation or change to the protocol or consent\nwithout prior review and documented approval from PrECOG and/or representatives and\nthe IRB of an amendment, except where necessary to eliminate an immediate hazard(s)\nto study patients.\nIf a deviation or change to the approved protocol is implemented to eliminate an\nimmediate hazard(s) prior to obtaining IRB approval, notification will be submitted to the\nIRB for review and approval as soon as possible afterward. Documentation of approval\nsigned by the chairperson or designee of the IRB(s) should be in the study records. If\nPrECOG and/or representatives provides an amendment that substantially alters the\nstudy design or increases the potential risk to the patient; the consent form must be\nrevised and submitted to the IRB(s) for review and approval; the revised form must be\nused to obtain consent from patients currently enrolled in the study if they are affected\nby the amendment; and the new form must be used to obtain consent from new patients\nprior to study entry. Information as to who investigators should send correspondence will\nbe provided in additional study documents.

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

11.2 Institutional Review Board\nBefore study initiation, the Investigator must have written and dated approval from their\nrespective IRB for the protocol, consent form, patient recruitment materials/process and\nany other written information to be provided to patients. The Investigator should also\nprovide the IRB with a copy of the Investigator Brochure or product labeling, and any\nupdates.\nThe Investigator should provide the IRB with reports, updates, and other information\n(e.g., Safety Updates, amendments, and administrative letters) according to regulatory\nrequirements, IRB or study site procedures.

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

11.3 Informed Consent Procedures\nInvestigators must ensure that patients who volunteer for clinical trials or their legally\nacceptable representative are clearly and fully informed about the purpose, potential\nrisks and other information.\nA protocol specific informed consent form (ICF) template will be provided to sites.\nPreparation of the site-specific consent form is the responsibility of the site Investigator\nand must include all applicable regulatory and IRB requirements, and must adhere to\nGood Clinical Practice (GCP) and to the ethical principles that have their origin in the\nDeclaration of Helsinki. All changes to the ICF template will be approved by PrECOG\nand/or their representatives prior to implementation.\nIn accordance with the Health Information Portability and Accountability Act (HIPAA), the\nconsent process will also include written authorization by patients to release medical\ninformation to allow PrECOG and/or its agents, regulatory authorities, and the IRB of

\n

record at the study site for access to patient records and medical information relevant to\nthe study, including the medical history. This will be documented in the informed consent\nform or other approved form obtained at the time of informed consent per institutional\npolicies. This form should also be submitted to PrECOG and/or its agents for review\nprior to its implementation.\nThe Investigator must provide the patient or legally acceptable representative with a\ncopy of the consent form and written information about the study in the language in\nwhich the patient is most proficient. The language must be non-technical and easily\nunderstood. The Investigator should allow time necessary for patient or patient's legally\nacceptable representative to inquire about the details of the study, then informed\nconsent must be signed and personally dated by the patient or the patient's legally\nacceptable representative and by the person who conducted the informed consent\ndiscussion. The patient or legally acceptable representative should receive a copy of the\nsigned informed consent and any other written information provided to study patients\nprior to patient's participation in the trial. The investigator is responsible for assuring\nadequate documentation of this process and for storage and maintenance of the original\nsigned consent form for each patient/subject.\nThe informed consent and any other information provided to patients or the patient's\nlegally acceptable representative, should be revised whenever important new\ninformation becomes available that is relevant to the patient's consent, and should\nreceive IRB approval prior to use. The Investigator, or a person designated by the\nInvestigator should inform the patient or the patient's legally acceptable representative of\nall pertinent aspects of the study and of any new information relevant to the patient's\nwillingness to continue participation in the study. This communication should be\ndocumented in the patient record. During a patient's participation in the trial, any updates\nto the consent form and any updates to the written information will be provided to the\npatient.

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

11.4 Safety Communication\nInvestigators will be notified of all AEs that are serious, unexpected, and definitely,\nprobably, or possibly related to the investigational product. Upon receiving such notices,\nthe Investigator must review and retain the notice with the Investigator Brochure and\nsubmit a copy of this information to the Institutional Review Board (IRB) according to\nlocal regulations. The Investigator and IRB will determine if the informed consent\nrequires revision. The Investigator should also comply with the IRB procedures for\nreporting any other safety information. All revisions should be submitted to PrECOG\nand/or agents for review.

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

11.5 Monitoring\nRepresentatives and agents of PrECOG and, as applicable to the study, the\nmanufacturer of Investigational Product must be allowed to visit all study site locations\nperiodically to assess the data, quality and study integrity. The purpose of this visit is to\nreview study records and directly compare them with source documents and discuss the\nconduct of the study with the Investigator, and verify that the facilities remain acceptable.\nThe study may be evaluated by other auditors and government inspectors who must be\nallowed access to electronic Case Report Forms (eCRFs), source documents and other

\n

study files. The investigator must notify PrECOG of any scheduled visits by regulatory\nauthorities, and submit copies of all reports. Information as to who investigators should\nnotify of an audit or where to address questions will be provided in additional study\nmaterials. Monitoring of drug accountability will also occur.

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

11.6 Study Records\nAn Investigator is required to maintain adequate regulatory files with corresponding\ncommunication and approvals, accurate histories, observations and other data on each\nindividual treated. Full details of required regulatory documents will be provided in\nadditional study materials. Data reported on the eCRF must be consistent with the\nsource documents as part of the patient record.\nThe confidentiality of records that could identify patients must be protected, respecting\nthe privacy and confidentiality rules in accordance with the applicable regulatory\nrequirement(s).\nA study specific signature record will be maintained to document signatures and initials\nof all persons at a study site who are authorized to make entries and/or corrections on\neCRFs as well as document other study-specific roles.

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

11.7 Electronic Case Report Form (eCRF) Information\nAdditional information regarding eCRF instructions, timelines for data entry/submission\nand query completion can be found in supplemental materials provided to the site. Sites\nwill be expected to complete eCRFs as per the schedule provided and submit all\nrelevant data as per the specified timelines. All items recorded on eCRFs must be found\nin source documents.\nThe completed eCRF must be promptly reviewed, electronically signed, and dated by a\nqualified physician who is an Investigator or Sub-Investigator.\nInstructions for management of patients who do not receive any protocol therapy:\nIf a patient is randomized and does not receive any assigned protocol treatment,\nbaseline, Serious Adverse Event and follow-up data will still be entered and must be\nsubmitted according to the eCRF instructions. Document the reason for not starting\nprotocol treatment on the appropriate electronic off-treatment form.

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

11.8 Records Retention\nFDA Regulations (21CFR 312.62) require clinical investigators to retain all trial-related\ndocumentation, including source documents for the periods described below for studies\nperformed under a US IND:\n•\n•\n•

\n

two years after the FDA approves the marketing application, or\ntwo years after the FDA disapproves the application for the indication being studied,\nor\ntwo years after the FDA is notified by the sponsor of the discontinuation of trials and\nthat an application will not be submitted.

\n

The Investigator must retain investigational product disposition records, copies of eCRFs\n(or electronic files), and source documents for the maximum period required by

\n

applicable regulations and guidelines, or Institution procedures, whichever is longer but\nnot less than 5 years from the completion of the study. The Investigator must contact\nPrECOG and/or representatives prior to destroying any records associated with the\nstudy.\nInformation as to who investigators should contact for questions will be provided in\nadditional study documents. PrECOG and/or representatives will notify the Investigator\nwhen the trial records for this study are no longer needed.

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

12 Glossary of Terms and List of Abbreviations\nTerm

\n

Definition

\n

4E-BP1

\n

4E-Binding Protein

\n

Ab\nADPKD

\n

Antibodies\nAutosomal Dominant Polycystic Kidney Disease

\n

ADR

\n

Adverse Drug Reaction

\n

AE(s)

\n

Adverse Events(s)

\n

Akt/PKB

\n

Protein Kinase B

\n

AI

\n

Aromatase Inhibitor

\n

Alk Phos

\n

Alkaline Phosphatase

\n

ALT/SGPT\nAMD

\n

Alanine Aminotransferase/Glutamic Pyruvic Transaminase/Serum GlutamicPyruvic Transaminase\nAge-Related Macular Degeneration

\n

ANC

\n

Absolute Neutrophil Count

\n

ASCO-CAP

\n

American Society of Clinical Oncology-College of American Pathologist

\n

AST/SGOT

\n

Aspartate\nAminotransferase/Glutamic\nGlutamic-Oxaloacetic Transaminase

\n

AUC\n°C

\n

Area Under the Concentration-Time Curve\ndegrees Celsius

\n

Ca

\n

Calcium

\n

CBC

\n

Complete Blood Count

\n

CBR

\n

Clinical Benefit Rate

\n

CI

\n

Confidence Interval

\n

CISH

\n

Chromogenic In Situ Hybridization

\n

Cl

\n

Chloride

\n

cm\nCmax

\n

centimeter\nMaximum plasma concentration

\n

CO2

\n

Carbon Dioxide

\n

CoA

\n

Coenzyme A

\n

COPD

\n

Chronic Obstructive Pulmonary Disease

\n

CPK

\n

Creatine Phosphokinase

\n

CR

\n

Complete Response

\n

CRC

\n

Colorectal Cancer

\n

Creat

\n

Creatinine

\n

CRF

\n

Case Report Form

\n

CRO

\n

Contract Research Organization

\n

CT

\n

Computer Tomography

\n

CTC

\n

Common Toxicity Criteria

\n

Oxaloacetic

\n

Transaminase/Serum

\n

Term

\n

Definition

\n

CTCAE

\n

The CTEP Common Terminology Criteria for Adverse Events (CTCAE)

\n

CTEP

\n

Cancer Therapy Evaluation Program

\n

CYP3A4

\n

CytochromeP450 3A4 Isoenzyme

\n

DLBCL

\n

Diffuse Large B Cell Lymphoma

\n

DLCO

\n

Diffusing Capacity of the Lung for Carbon Monoxide

\n

DLT

\n

Dose Limiting Toxicity

\n

DNA

\n

Deoxyribonucleic Acid

\n

DS&E

\n

Drug Safety and Epidemiology

\n

eCRF\ne.g.\nER

\n

Electronic Case Report Form\nexempli gratia (for example)\nEstrogen Receptor

\n

FSH\nEU\nFDA

\n

Follicle Stimulating Hormone\nEuropean Union\nFood and Drug Administration\nFluorine-18-2-fluoro-Deoxy-D-Glucose Positron Emission Tomography

\n

FDG-PET\nFISH\nFKBP-12\nFSH

\n

Fluorescence In Situ Hybridization\nFK506-Binding Protein 12\nFollicle Stimulating Hormone

\n

GBM

\n

Glioblastoma Multiforme

\n

GCP

\n

Good Clinical Practice

\n

GEP-NET

\n

Gastroenteropancreatic Neuroendocrine Tumor

\n

GERD

\n

Gastroesophageal Reflux Disease

\n

GF

\n

Growth Factor

\n

GI

\n

Gastrointestinal

\n

GnRH

\n

Gonadotropin-Releasing Hormone

\n

HBV

\n

Hepatitis B Virus

\n

HBcAb

\n

Hepatitis B core Antibodies

\n

HBsAb

\n

Hpatitis B surface Antibodies

\n

HbsAg

\n

Hepatitis B surface Antigen

\n

HCC

\n

Hepatocellular Cancer

\n

HCV

\n

Hepatitis C Virus

\n

HER-2

\n

Human Epidermal Growth Factor Receptor 2

\n

HIF-1

\n

Hypoxia-Inducible Factor-1

\n

HIPAA

\n

Health Information Portability and Accountability Act

\n

HIV

\n

Human Immunodeficiency Virus

\n

HMG

\n

3-hydroxy-3-methyl-glutaryl

\n

HR

\n

Hormone-Receptor

\n

HUVECS

\n

Human Umbilical Endothelial Cells

\n

IB

\n

Investigator Brochure (also called Investigator Drug Brochure, IDB)

\n

Term

\n

Definition

\n

ICF

\n

Informed Consent Form

\n

ICH

\n

International Conference on Harmonization

\n

IND\nINN

\n

Investigational New Drug\nInternational Non-Proprietary Name

\n

INR

\n

International Normal Ratio

\n

IRB\nIU

\n

Institutional Review Board\nInternational Unit

\n

IV

\n

Intravenous

\n

IWR

\n

Interactive Web Randomization

\n

K

\n

Potassium

\n

kg

\n

Kilogram

\n

L

\n

Liter

\n

LDH

\n

Lactate Dehydrogenase

\n

LDL

\n

Low-Density Lypoproteins

\n

LFTs

\n

Liver Function Tests

\n

LLN

\n

Lower Limit Normal

\n

LMW\nLog10

\n

Low Molecular Weight\nDecadic logarithm (common logarithm)

\n

M

\n

Meter

\n

mg\nMg

\n

Milligram\nMagnesium

\n

min

\n

minute

\n

mL

\n

Milliliter

\n

mRCC

\n

Metastatic Renal Cell Carcinoma

\n

MRI

\n

Magnetic Resonance Imaging

\n

mTOR

\n

mammalian Target of Rapamycin

\n

N\nNa

\n

Number of patients or observations\nSodium

\n

N/A

\n

Not Applicable

\n

NCI

\n

National Cancer Institute

\n

NSCLC

\n

Non-Small Cell Lung Cancer

\n

Ng

\n

Nanogram

\n

µM\nNm

\n

Nanometer

\n

nM

\n

Nanomolar

\n

OS

\n

Overall Survival

\n

PD

\n

Progressive Disease\nPhosphoinositide 3-kinase

\n

P13K

\n

Micromolar

\n

Term

\n

Definition

\n

PI

\n

Package Insert

\n

PBMC

\n

Peripheral Blood Mononuclear Cells

\n

PCR\nPET

\n

Polymerase Chain Reaction\nProton Emission Tomography

\n

PFS\nPgP

\n

Progression Free Survival\nP-glycoprotein

\n

PK

\n

Pharmacokinetic

\n

Plt

\n

Platelet

\n

PNET

\n

Pancreatic Neuroendocrine Tumor

\n

PO\nPR

\n

Per Oral (by mouth route of administration)\nPartial Response

\n

PR-positive

\n

Progesterone Receptor

\n

PSA

\n

Prostate-Specific Antigen

\n

PTEN

\n

Phosphatase and Tensin Homolog Deleted on Chromosome 10

\n

PT/PTT

\n

Prothrombin Time/Partial Thromboplastin Time

\n

QC\nQD

\n

Quality Control\nOnce Daily\nthe interval between the beginning of the Q-wave and the end of the T-wave on\nan electrocardiogram

\n

QT\nQTc

\n

corrected Q to T wave interval on electrocardiogram

\n

RCC\nRECIST\nRNA

\n

Renal Cell Carcinoma\nResponse Evaluation Criterion Solid Tumors\nRibonucleic Acid\nResponse Rate

\n

RR\nRTK\nS6K1\nSAE\nSC\nSCLC\nSD\nSEGA\nSERD

\n

Receptor Tyrosine Kinase\nS6 Kinase 1\nSerious Adverse Event\nSubcutaneous\nSmall Cell Lung Cancer\nStable Disease\nSubependymal Giant Cell Astrocytoma\nSelective Estrogen Receptor Down-Regulators

\n

SERM

\n

Selective Estrogen Receptor Modulator

\n

T Bili\nTKI

\n

Total Bilirubin\nTyrosine Kinase Inhibitor

\n

TS

\n

Tuberous Sclerosis

\n

TSC

\n

Tuberous Sclerosis Complex

\n

TTP

\n

Time to Progression

\n

Term

\n

Definition

\n

TUNNEL

\n

Terminal Deoxynucleotidyl Transferase (TdT)-Mediated dUTP-Biotin Nick End\nLabeling

\n

µg

\n

microgram

\n

ULN

\n

Upper Limit Normal

\n

US

\n

United States

\n

USP\nVEGF

\n

United States Pharmacopeia\nVascular Endothelial Growth Factor

\n

WBC

\n

White Blood Cell Count

\n

WHO

\n

World Health Organization

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

13 Appendix A: Eligibility Checklist\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

INCLUSION CRITERIA\nMust be willing to sign a protocol-specific informed consent.\nConsent Date: _____/_____/_____

\n

Consent in patient record

\n

Age > 18 and female.\nBirth Date: _____/_____/_____

\n

Documentation in patient record

\n

ECOG Performance Status 0 or 1.\nPS

\n

(must document in patient record)

\n

Patient must have histologically or cytologically confirmed adenocarcinoma of the breast.\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Must have stage IV disease or inoperable locally advanced disease.\nDocumentation in patient record (via imaging scans as per RECIST Section 6.0)\nPatients must have ER and/or PR-positive disease as determined by their local pathology or

\n

reference laboratory by ASCO-CAP criteria. Tumors must be HER-2/neu negative or equivocal

\n

by standard ICH/FISH or ICH/CISH methodologies by ASCO-CAP criteria.\nER+

\n

PR+

\n

ER+ and PR+

\n

Tumor is HER-2/neu negative by standard ICH/FISH or ICH/CISH methodologies\nPathology Date: _____/_____/______

\n

Pathology must be in patient record

\n

Patients must have had relapse while receiving adjuvant therapy with an aromatase inhibitor\n(anastrozole, letrozole, or exemestane), OR progressive disease while receiving an aromatase\ninhibitor for metastatic disease. Note: Patients may have received an endocrine agent (e.g.,\nTamoxifen) between the time of progression on an AI and registration.\nDocumentation in patient record\nPatients previously treated with two or more prior cycles of fulvestrant are not eligible. Patients\nwho have received one prior cycle (dose on day 1 and day 15) of fulvestrant within 28 days of\nrandomization are eligible as long as they meet other eligibility criteria.\nDocumentation in patient record\nPatients must be post menopausal. (see Section 3.1)\nDocumentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patient may have received up to one prior systemic chemotherapy regimen for metastatic\ndisease.\nno prior systemic chemotherapy\none prior systemic chemotherapy regimen\ndocumentation in patient record\nAdequate end organ function, as evidenced by the following obtained within 4 weeks of\nrandomization: all must be present (see Section 7.0 for labs that may need to be repeated within\n≤ 7 days of Cycle 1, Day 1)

\n

Total White Blood Cell Count (leucocytes, WBC) ≥ 3.0 x 10 /L, absolute neutrophil count

\n

(ANC) ≥ 1.5 x 10 /L and platelet count ≥ 100 x 10 /L\n(Total WBC value:_________unit__________)\n(ANC value:_________unit__________)\n(Platelet Count value:_________unit__________)\nHemoglobin ≥ 9 g/dL\n(value:_________unit___________)\nSerum Bilirubin ≤ 1.5 x ULN\n(value:_________unit___________ULN_______)\nAST or ALT ≤ 2.5 x ULN (≤ 5 x ULN in patients with liver metastases)\n(AST value:_________unit___________ULN_______)\n(ALT value:_________unit___________ULN_______)\nSerum Creatinine ≤ 1.5 x ULN (value:_________unit___________ULN_______)\nSerum Albumin ≥ 3 g/dL\n(value:_________unit__________)\nFasting Serum Cholesterol ≤ 300 mg/dL OR ≤ 7.75 mmol/L AND Fasting Triglycerides ≤ 2.5 x\nULN Note: In case one or both of these thresholds are exceeded, the patient can only be\nincluded after initiation of appropriate lipid lowering medication.\n(Fasting Serum Cholesterol value:_________unit__________)\n(Fasting Triglycerides value:_________unit___________ULN_______)\nPT with INR ≤ 1.5. (Anticoagulation is allowed if target INR ≤ 1.5 on a stable dose of warfarin\nor on a stable dose of low molecular weight heparin for >2 weeks at time of randomization.\n(INR value:_________unit___________)\n(PT value:_________unit___________)\nDocumentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients may have measurable disease, non-measurable disease (e.g., bone only metastases),\nor both. Response and progression will be evaluated in this study using the new international\ncriteria proposed by the revised Response Evaluation Criteria in Solid Tumors (RECIST)\nguideline (Version 1.1) [Eur J Ca 45:228-247, 2009]. Measurable lesions are defined as those\nthat can be accurately measured in at least one dimension (longest diameter to be recorded) as\n≥ 20 mm by chest x-ray, as ≥ 10 mm with CT scan, or ≥ 10 mm with calipers by clinical exam. All\ntumor measurements must be recorded in millimeters (or decimal fractions of centimeters).\nMeasurable disease only\nNon-measurable disease only\nBoth measurable and non-measurable disease\nDocumentation in patient record\nNote: Tumor lesions in a previously irradiated field are not considered measurable.\nPatients with basal cell or squamous cell carcinoma of the skin or carcinoma in situ of the cervix\nwithin the past five years must have been treated with curative intent. Patients with a history of\nprior malignancy are eligible provided they were treated with curative intent and have been free\nof disease for >3 years.\nN/A

\n

Date of treatment: _____/_____/_____

\n

Documentation in patient record

\n

EXCLUSION CRITERIA\nPatients who have had any major surgery or significant traumatic injury within 4 weeks of\nrandomization, or have not recovered from the side effects of any major surgery (defined as\nrequiring general anesthesia) or patients that may require major surgery during the course of the\nstudy are not eligible. (Placement of vascular access device will not be considered major\nsurgery.)\nDate of surgery: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients may not be receiving any other investigational agents or have received any\ninvestigational agent within 4 weeks of randomization.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

Patients must not be receiving any concomitant anticancer treatment or have received anticancer\ntreatment within 4 weeks of randomization (including chemotherapy, radiation therapy, antibody\nbased therapy, e.g.), with the following exceptions:\n• Bisphosphonates, Zometa or Xgeva for bone metastases\n• Hormonal therapy (e.g., AI, Tamoxifen)\n• a GnRH analog is permitted if the patient had progressive disease on a GnRH analog\nplus a SERM or an AI; the GnRH analog may continue but the SERM or AI must be\ndiscontinued.\nDate of last treatment: _____/_____/_____

\n

N/A

\n

Documentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have received prior treatment with an mTOR inhibitor (sirolimus, temsirolimus,\neverolimus).\nN/A

\n

Documentation in patient record

\n

Patients must not be receiving chronic, systemic treatment with corticosteroids or another\nimmunosuppressive agent greater than or equal to 5 mg prednisone or its equivalent daily.\nTopical or inhaled corticosteroids are allowed.\nN/A

\n

Documentation in patient record

\n

Patients must not receive immunization with attenuated live vaccines within one week of\nrandomization or during the study period. Close contact with those who have received attenuated\nlive vaccines should be avoided during treatment with everolimus. Examples of live vaccines\ninclude intranasal influenza, measles, mumps, rubella, oral polio, BCG, yellow fever, varicella\nand TY21a typhoid vaccines.\nN/A

\n

Documentation in patient record

\n

Patients must not have current or a prior history of brain metastases or leptomeningeal disease.\nPatients must not have rapidly progressive, life-threatening metastases. This includes patients\nwith extensive hepatic involvement (>50% of the liver involved) and symptomatic lymphangitic\nmetastases.\nN/A

\n

Documentation in patient record

\n

Patients must not have a known hypersensitivity/history of allergic reactions attributed to\ncompounds of similar chemical or biologic composition to everolimus (or other rapamycins such\nas sirolimus, temsirolimus) or fulvestrant.\nN/A

\n

Documentation in patient record

\n

Since everolimus may cause bone marrow suppression, patients with congenital or acquired\nimmune deficiency at increased risk of infection are not eligible. This includes patients being\ntreated with chronic immunosuppressive agents (including greater than or equal to 5 mg\nprednisone or its equivalent daily), and patients with known HIV seropositivity.\nN/A

\n

Documentation in patient record

\n

Patients must not have any impairment of gastrointestinal function or gastrointestinal disease\nthat may significantly alter the absorption of everolimus (e.g., ulcerative disease, uncontrolled\nnausea, vomiting, diarrhea, malabsorption syndrome or small bowel resection).\nN/A

\n

Documentation in patient record

\n

Patients must not have an active, bleeding diathesis.\nN/A

\n

Documentation in patient record

\n

\n

Pt Initials: ___ ___ ___\nF

\n

M

\n

L

\n

Study Personnel: ____________________________\nDate of Evaluation: ___/___/____

\n

Patients must not have a history of any condition or uncontrolled intercurrent illness including,\nbut not limited to, ongoing or active infection or psychiatric illness/social situations that in the\nopinion of the investigator might intefere with or limit the patient’s ability to comply with the\nprotocol or pose additional or unacceptable risk to the patient.\nN/A

\n

Documentation in patient record

\n

Patients must not have any severe and/or uncontrolled medical conditions or other conditions\nthat could affect their participation in the study such as:\n•

\n

Symptomatic congestive heart failure of New York Heart Association Class III or IV (see\nAppendix D)

\n

\n

Unstable angina pectoris, myocardial infarction within 6 months of randomization, serious\nuncontrolled cardiac arrhythmia or any other clinically significant cardiac disease

\n

\n

History of symptomatic pulmonary disease or non-malignant pulmonary disease (e.g.\nCOPD) requiring treatment. Such patients would be eligible if PFTs performed within 8\nweeks of treatment noted a DLCO greater than 50%.

\n

\n

Uncontrolled diabetes as defined by fasting serum glucose >1.5 x ULN (Note: Optimal\nglycemic control should be achieved before starting trial therapy.)

\n

\n

Active (acute or chronic) or uncontrolled severe infections

\n

\n

Liver disease such as cirrhosis or severe hepatic impairment (Child-Pugh Class C).

\n

Note: A detailed assessment of Hepatitis B/C medical history and risk factors must be done at\nscreening for all patients. HBV DNA and HCV RNA PCR testing are required at screening for all\npatients with a positive medical history based on risk factors and/or confirmation of prior\nHBV/HCV infection.\nN/A

\n

Documentation in patient record

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

14 Appendix B: ECOG Performance Status Scale\nGrade ECOG

\n

Fully active, able to carry on all pre-disease performance without restriction

\n

Restricted in physically strenuous activity but ambulatory and able to carry out\nwork of a light or sedentary nature, e.g., light house work, office work

\n

Ambulatory and capable of all self-care but unable to carry out any work\nactivities. Up and about more than 50% of waking hours

\n

Capable of only limited self-care, confined to bed or chair more than 50% of\nwaking hours

\n

Completely disabled. Cannot carry on any self-care. Totally confined to bed or\nchair

\n

Dead

\n

Source: Eastern Cooperative Oncology Group, Robert Comis M.D., Group Chair

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

15 Appendix C: Medications that can Inhibit/Induce CYP3A4\nand PgP\nSee Section 5.3.5.1 for guidelines on use of inhibitors and Section 5.3.5.2 for guidelines\non use of inducers. Table 15-0 shows clinically relevant drug interactions for inhibitors\nand inducers of isoenzyme CYP3A. Table 15-1 shows clinically relevant drug\ninteractions for substrates, inducers, and inhibitors of PgP and PgP/CYP3A.\nTable 15-0\nClinically Relevant Drug Interactions: Inhibitors and Inducers of Isoenzyme\nCYP3A\nINHIBITORS\nStrong Inhibitors:\nclarithromycin, conivaptan, elvitegravir, indinavir, itraconazole, ketoconazole, lopinavir,\nmibefradil, nefazodone, nelfinavir, posaconazole, ritonavir, saquinavir, telithromycin,\ntipranavir, troleandamycin, voriconazole\n(Krishna et al, 2009)\nModerate Inhibitors:\naprepitant, amprenavir, atazanavir, casopitant, cimetidine, ciprofloxacin, darunavir, diltiazem,\ndronedarone, erythromycin, fluconazole, fosamprenavir, grapefruit juice (citrus parasidi fruit\njuice), imatinib, tofisopam, verapamil\nINDUCERS\namprenavir, aprepitant, armodafinil (R-modafinil), avasimibe, bosentan, carbamazepine,\ndexamethasone, efavirenz, etravirine, glucocorticoids, modafinil, nafcillin, nevirapine,\noxcarbazepine, phenobarbital, phenytoin, pioglitazone, prednisone, rifabutin, rifampin,\nritonavir, rufinamide, St. John’s wort, talviraline, tipranavir, topiramate, troglitazone

\n

Table 15-1\nClinically Relevant Drug Interactions: Substrates, Inducers, and Inhibitors of PgP\nand PgP/CYP3A\nSUBSTRATES\nColchicines, digoxin, fexofenadine, indinavir, paclitaxel, topotecan, vincristine\nINDUCERS\nRifampin, St. John’s wort\nPgP INHIBITORS and PgP/CYP3A DUAL INHIBITORS\nAmiodarone, captopril, carvedilol, clarithromycin, conivaptan, diltiazem, dronedarone,\nelacridar, erythromycin, felodipine, fexofenadine, ginkgo (ginkgo biloba), indinavir,\nitraconazole, lopinavir, mibefradil, milk thistle (silybum marianum), nifedipine, nitrendipine,\nquercetin, quinidine, ranolazine, ritonavir, saquinavir, Schisandra chinensis, St John’s wort\n(hypericum perforatum), talinolol, telmisartan, tipranavir, valspodar, verapamil\nReference: Internal Clinical Pharmacology Drug-drug interaction (DDI) memo, updated\nOct. 2, 2011, which summarizes DDI data from three sources including the FDA’s\n“Guidance for Industry, Drug Interaction Studies”, the University of Washington’s Drug\nInteraction Database, and Indiana University School of Medicine's Drug Interaction\nTable.

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

16 Appendix D: New York Heart Association (NYHA) Cardiac\nClassification of Functional Capacity and Objective\nAssessment\nIn 1928 the New York Heart Association published a classification of patients with cardiac\ndisease based on clinical severity and prognosis. This classification has been updated in seven\nsubsequent editions of Nomenclature and Criteria for Diagnosis of Diseases of the Heart and\nGreat Vessels (Little, Brown & Co.). The ninth edition, revised by the Criteria Committee of the\nAmerican Heart Association, New York City Affiliate, was released March 4, 1994*. The new\nclassifications are summarized below.\nThe NYHA classification system relates symptoms to everyday activities and the patient’s quality\nof life.

\n

Class

\n

Symptoms

\n

Class I

\n

Patients with cardiac disease but without resulting limitation of physical\nactivity. Ordinary physical activity does not cause undue fatigue,\npalpitation, dyspnea (shortness of breath), or anginal pain.

\n

Class II

\n

Patients with cardiac disease resulting in slight limitation of physical\nactivity. Comfortable at rest, but ordinary physical activity results in\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class III

\n

Patients with cardiac disease resulting in marked limitation of physical\nactivity. Comfortable at rest, but less than ordinary activity causes\nfatigue, palpitation, dyspnea or anginal pain.

\n

Class IV

\n

Patients with cardiac disease resulting in inability to carry out any\nphysical activity without discomfort. Symptoms of heart failure or anginal\nsyndrome may be present even at rest. If any physical activity is\nundertaken, discomfort increases.

\n

Objective Assessment\nI:

\n

No objective evidence of cardiovascular disease

\n

II:

\n

Objective evidence of minimal cardiovascular disease

\n

III:

\n

Objective evidence of moderately severe cardiovascular disease

\n

IV:

\n

Objective evidence of severe cardiovascular disease

\n

Accessed October 2009* http://www.americanheart.org/presenter.jhtml?identifier=1712\nThe Criteria Committee of the New York Heart Association. Nomenclature and Criteria for Diagnosis of\nDiseases of the Heart and Great Vessels. 9th ed. Boston, Mass: Little, Brown & Co; 1994:253-256.

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

17 Appendix E: CTEP Common Terminology Criteria for\nAdverse Events (CTCAE) Version 4.0\nCommon Terminology Criteria for Adverse Events (CTCAE)\nCTCAE term (AE description) and grade: The descriptions and grading scales found\nin the revised NCI Common Terminology Criteria for Adverse Events (CTCAE) Version\n4.0 will be utilized for AE reporting. All appropriate treatment areas should have access\nto a copy of the CTCAE Version 4.0. A copy of the CTCAE Version 4.0 can be\ndownloaded from the CTEP web site (http://ctep.cancer.gov).\nAll appropriate treatment areas should have access to a copy of the CTEP CTCAE\nVersion 4.0.

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

18 Appendix F: Patient Pill Diary\nCopies of this form will be made available to study staff in study materials. This form is\nappended as an example only, and may be modified during the study.

\n

Site Instructions:\n1. If this or a similar diary is used this may be considered source documentation, if the\ndiary has been reviewed and signed by a member of the study staff. Patient\ncompliance with protocol therapy can be assessed using a pill record or by other\ndocumentation in the patient record.\n2. Patients should be instructed to begin Day 1 with the beginning of each cycle, with\neach cycle being 28 days.\n3. If a dose modification occurs, patients should be given instructions for dosing, and\nthe form can be modified as appropriate. Any dose changes should be recorded in\nthe patient chart with appropriate rationale as per protocol.\n4. A new form can be used at any time during a cycle; as long as the patient is made\naware of changes (e.g. study staff fills in dates and mark lines/dates not to be used).\n5. It is the responsibility of the investigator to appropriately dispense and monitor study\nmedications and to comply with the protocol.

\n

Patient Name: _____________________________

\n

Patient Study ID (filled in by Site Staff):\n______________________

\n

Patient Instructions:\n1. Complete each form as instructed by your physician or study nurse.\n2. You will take 2 pill(s) each day. You should take the pill(s) the same time each day, and in the\nmorning, if possible. If you forget to take a pill and remember by 10 PM, you may take the dose.\nOtherwise just skip that dose and begin as usual the next day. Please mark dates of any missed\npills on your record.\n3. .Each dose should be swallowed whole with a glass of water and may be taken with or without food.\nThe tablets must not be chewed or crushed. In cases where tablets cannot be swallowed, the tablets\nshould be disintegrated in water just prior to being taken. Approximately 30 mL (2 tablespoons) of\nwater should be put into a glass. The tablets should then be added and the contents stirred gently\n(for a maximum of 7 minutes) until the tablets are disintegrated. The contents should then be drunk.\nIf you vomit after taking the study drug, you should NOT take another tablet that day. If you forget to\ntake the medication and remembers by 10 PM, you may take the dose. Otherwise, skip that dose\nand begin as usual the next day.\n4. If you have any side effects or comments, please note in the comment section or on the back of the\npage. For questions or if you have any side effects that should be immediately reported to your\nstudy doctor, please call _______________________________at: (_____) _____ - _________.\n5. Please bring your pill(s) and this form to your study doctor when you go for each appointment. If\nyour dose changes, the study nurse or doctor will let you know. You should note this on the form.\nDate

\n

Day

\n

# Pills

\n

Comments

\n

Date

\n

Day

\n

Patient Signature: _________________________________

\n

# Pills

\n

Comments

\n

Date: ___________________

\n

Physician Office to complete this section:\nStudy Personnel Signature: __________________________

\n

Date: ____________________

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

19 References\n1.\nMoy B, Goss PE. Estrogen receptor pathway: resistance to endocrine therapy\nand new therapeutic approaches. Clin Cancer Res 2006;12:4790-3.\n2.\nNicholson KM, Anderson NG. The protein kinase B/Akt signalling pathway in\nhuman malignancy. Cell Signal 2002;14:381-95.\n3.\nDeGraffenried LA, Friedrichs WE, Fulcher L, et al. Eicosapentaenoic acid\nrestores tamoxifen sensitivity in breast cancer cells with high Akt activity. Ann Oncol\n2003;14:1051-6.\n4.\nTokunaga E, Kataoka A, Kimura Y, et al. The association between Akt\nactivation and resistance to hormone therapy in metastatic breast cancer. Eur J Cancer\n2006;42:629-35.\n5.\nBeeram M, Tan QT, Tekmal RR, Russell D, Middleton A, DeGraffenried LA.\nAkt-induced endocrine therapy resistance is reversed by inhibition of mTOR signaling.\nAnn Oncol 2007;18:1323-8.\n6.\nPerez-Tenorio G, Stal O. Activation of AKT/PKB in breast cancer predicts a\nworse outcome among endocrine treated patients. Br J Cancer 2002;86:540-5.\n7.\nBjornsti MA, Houghton PJ. The TOR pathway: A target for cancer therapy. Nat\nRev Cancer 2004;4:335-38.\n8.\nShaw RJ, Cantley LC. Ras, PI(3)K and mTOR signalling controls tumour cell\ngrowth. Nature 2006;441:424-30.\n9.\ndeGraffenried LA, Friedrichs WE, Russell DH, et al. Inhibition of mTOR activity\nrestores tamoxifen response in breast cancer cells with aberrant Akt Activity. Clin\nCancer Res 2004;10:8059-67.\n10.\nAwada A, Cardoso F, Fontaine C, et al. The oral mTOR inhibitor RAD001\n(everolimus) in combination with letrozole in patients with advanced breast cancer:\nresults of a phase I study with pharmacokinetics. Eur J Cancer 2008;44:84-91.\n11.\nAmerican Cancer Society. Breast Cancer Facts & Figures 2011-2012. Atlanta:\nAmerican\nCancer\nSociety\nInc.;\nhttp://www.cancer.org/acs/groups/content/@\nepidemiologysurveilance/documents/document/acspc-030975.pdf\n(accessed 7/11/2012)\n12.\nBuzdar AU. Endocrine therapy in the treatment of metastatic breast cancer.\nSemin Oncol 2001;28:291-304.\n13.\nCampos SM, Winer EP. Hormonal therapy in postmenopausal women with\nbreast cancer. Oncology 2003;64:289-99.\n14.\nSparano J, Pasqualini JR, eds. Breast cancer : prognosis, treatment, and\nprevention. New York: Marcel Dekker; 2002.\n15.\nWiner EP, Hudis C, Burstein HJ, et al. American Society of Clinical Oncology\ntechnology assessment on the use of aromatase inhibitors as adjuvant therapy for\npostmenopausal women with hormone receptor-positive breast cancer: status report\n2004. J Clin Oncol 2005;23:619-29.\n16.\nBerry J. Are all aromatase inhibitors the same? A review of controlled clinical\ntrials in breast cancer. Clin Ther 2005;27:1671-84.

\n

17.\nHowell A, Robertson JF, Quaresma Albano J, et al. Fulvestrant, formerly ICI\n182,780, is as effective as anastrozole in postmenopausal women with advanced\nbreast cancer progressing after prior endocrine treatment. J Clin Oncol 2002;20:3396403.\n18.\nOsborne CK, Pippen J, Jones SE, et al. Double-blind, randomized trial\ncomparing the efficacy and tolerability of fulvestrant versus anastrozole in\npostmenopausal women with advanced breast cancer progressing on prior endocrine\ntherapy: results of a North American trial. J Clin Oncol 2002;20:3386-95.\n19.\nMauriac L, Pippen JE, Quaresma Albano J, Gertler SZ, Osborne CK.\nFulvestrant (Faslodex®) versus anastrozole for the second-line treatment of advanced\nbreast cancer in subgroups of postmenopausal women with visceral and non-visceral\nmetastases: combined results from two multicentre trials. Eur J Cancer 2003;39:122833.\n20.\nHowell A, Robertson JF, Abram P, et al. Comparison of fulvestrant versus\ntamoxifen for the treatment of advanced breast cancer in postmenopausal women\npreviously untreated with endocrine therapy: a multinational, double-blind, randomized\ntrial. J Clin Oncol 2004;22:1605-13.\n21.\nIngle JN, Suman VJ, Rowland KM, et al. Fulvestrant in women with advanced\nbreast cancer after progression on prior aromatase inhibitor therapy: North Central\nCancer Treatment Group Trial N0032. J Clin Oncol 2006;24:1052-6.\n22.\nPerey L, Paridaens R, Hawle H, et al. Clinical benefit of fulvestrant in\npostmenopausal women with advanced breast cancer and primary or acquired\nresistance to aromatase inhibitors: final results of phase II Swiss Group for Clinical\nCancer Research Trial (SAKK 21/00). Ann Oncol 2007;18:64-9.\n23.\nChia S, Gradishar W, Mauriac L, et al. Double-blind, randomized placebo\ncontrolled trial of fulvestrant compared with exemestane after prior nonsteroidal\naromatase inhibitor therapy in postmenopausal women with hormone receptor-positive,\nadvanced breast cancer: results from EFECT. J Clin Oncol 2008;26:1664-70.\n24.\nDi Leo A, Jerusalem G, Petruzelka L, et al. CONFIRM: A Phase III,\nRandomized, Parallel-Group Trial Comparing Fulvestrant 250 mg vs Fulvestrant 500\nmg in Postmenopausal Women with Estrogen Receptor-Positive Advanced Breast\nCancer. J Clin Oncol. 2010 Oct 20; 28(30):4594-600.\n25.\nBoulay A, Lane HA. The mammalian target of rapamycin kinase and tumor\ngrowth inhibition. Recent Results Cancer Res 2007;172:99-124.\n26.\nWullschleger S, Loewith R, Hall MN. TOR signaling in growth and metabolism.\nCell 2006;124(3):471-84.\n27.\nManning BD, Cantley LC. AKT/PKB signaling: navigating downstream. Cell\n2007;129(7):1261-74.\n28.\nWang L, Harris TE, Roth RA, Lawrence JC, Jr. PRAS40 regulates mTORC1\nkinase activity by functioning as a direct inhibitor of substrate binding. J Biol Chem\n2007;282(27):20036-44.\n29.\nWitzig TE, Geyer SM, Ghobrial I, et al. Phase II trial of single-agent\ntemsirolimus (CCI-779) for relapsed mantle cell lymphoma. J Clin Oncol 2005;\n23(23):5347-56.

\n

30.\nLane HA, Wood JM, McSheehy PM, et al. mTOR inhibitor RAD001 (everolimus)\nhas antiangiogenic/vascular properties distinct from a VEGFR tyrosine kinase inhibitor.\nClin Cancer Res 2009;15(5):1612-22.\n31.\nMabuchi S, Altomare DA, Cheung M, et al. RAD001 inhibits human ovarian\ncancer cell proliferation, enhances cisplatin-induced apoptosis, and prolongs survival in\nan ovarian cancer model. Clin Cancer Res 2007;13(14):4261-70.\n32.\nGalanis E, Buckner JC, Maurer MJ, et al. Phase II trial of temsirolimus (CCI779) in recurrent glioblastoma multiforme: a North Central Cancer Treatment Group\nStudy. J Clin Oncol 2005;23:5294-304.\n33.\nO’Reilly T, McSheehy PM. Biomarker Development for the Clinical Activity of\nthe mTOR Inhibitor everolimus (RAD001): Processes, Limitations, and Further\nProposals. Tran Oncol; 2010 Apr; 3(2):65-79.\n34.\nHuang S, Houghton PJ. Inhibitors of mammalian target of rapamycin as novel\nantitumor agents: from bench to clinic. Curr Opin Investig Drugs. 2002 Feb; 3(2):295304.\n35.\nZitzmann K, De Toni EN, Brand S, et al. The novel mTOR inhibitor RAD001\n(everolimus) induces antiproliferative effects in human pancreatic neuroendocrine\ntumor cells. Neuroendocrinology 2007;85(1):54-60.\n36.\nZeng Z, Sarbassov dos D, Samudio IJ, et al. Rapamycin derivatives reduce\nmTORC2 signaling and inhibit AKT activation in AML. Blood 2007;109(8):3509-12.\n37.\nHaritunians T, Mori A, O'Kelly J, Luong QT, Giles FJ, Koeffler HP.\nAntiproliferative activity of RAD001 (everolimus) as a single agent and combined with\nother agents in mantle cell lymphoma. Leukemia 2007;21(2):333-9.\n38.\nIkezoe T, Nishioka C, Bandobashi K, et al. Longitudinal inhibition of\nPI3K/Akt/mTOR signaling by LY294002 and rapamycin induces growth arrest of adult\nT-cell leukemia cells. Leuk Res 2007;31(5):673-82.\n39.\nWanner K, Hipp S, Oelsner M, et al. Mammalian target of rapamycin inhibition\ninduces cell cycle arrest in diffuse large B cell lymphoma (DLBCL) cells and sensitises\nDLBCL cells to rituximab. Br J Haematol 2006;134(5):475-84.\n40.\nTuncyurek P, Mayer JM, Klug F, et al. Everolimus and mycophenolate mofetil\nsensitize human pancreatic cancer cells to gemcitabine in vitro: a novel adjunct to\nstandard chemotherapy? Eur Surg Res 2007;39(6):380-7.\n41.\nTreeck O, Wackwitz B, Haus U, Ortmann O. Effects of a combined treatment\nwith mTOR inhibitor RAD001 and tamoxifen in vitro on growth and apoptosis of human\ncancer cells. Gynecol Oncol 2006;102(2):292-9.\n42.\nSieghart W, Fuereder T, Schmid K, et al. Mammalian target of rapamycin\npathway activity in hepatocellular carcinomas of patients undergoing liver\ntransplantation. Transplantation 2007;83(4):425-32.\n43.\nLu CH, Wyszomierski SL, Tseng LM, et al. Preclinical testing of clinically\napplicable strategies for overcoming trastuzumab resistance caused by PTEN\ndeficiency. Clin Cancer Res 2007;13(9):5883-8.\n44.\nTorres-Arzayus MI, Yuan J, DellaGatta JL, Lane H, Kung AL, Brown M.\nTargeting the AIB1 oncogene through mammalian target of rapamycin inhibition in the\nmammary gland. Cancer Res 2006;66(23):11381-8.

\n

45.\nRossi F, Ehlers I, Agosti V, et al. Oncogenic Kit signaling and therapeutic\nintervention in a mouse model of gastrointestinal stromal tumor. Proc Natl Acad Sci U\nS A 2006;103(34):12843-8.\n46.\nLane H, Tanaka C, Kovarik J, et al. Preclinical and clinical pharmacokinetic /\npharmacodynamic (PK/PD) modeling to help define an optimal biological dose for the\noral mTOR inhibitor, RAD001, in oncology [abstract]. J Clin Oncol; 2003; 22:237A.\n47.\nTabernero J, Rojo F, Calvo E, et al. Dose- and schedule-dependent inhibition of\nthe mammalian target of rapamycin pathway with everolimus: A phase I tumor\npharmacodynamic study in patients with advanced solid tumors. J Clin Oncol\n2008;28:10.\n48.\nhttp://www.fda.gov/NewsEvents/Newsroom/PressAnnouncements/ucm312965\n.htm (accessed 8/1/2012)\n49.\nBaselga J, Campone M, Piccart M, et al. Everolimus in postmenopausal\nhormone-receptor-positive advanced breast cancer. N Engl J Med 2012 Feb\n9;366(6):520-9. Epub 2011 Dec 7. PubMed PMID: 22149876\n50.\nSanchez CG, Ma CX, Crowder RJ, et al. Preclinical modeling of combined\nphosphatidylinositol-3-kinase inhibition with endocrine therapy for estrogen receptorpositive breast cancer. Breast Cancer Res 2011 Mar 1;13(2):R21.\n51.\nHammond ME, Hayes DF, Wolff AC, et al. American society of clinical\noncology/college of American pathologists guideline recommendations for\nimmunohistochemical testing of estrogen and progesterone receptors in breast cancer.\nOncol Pract. 2010 Jul;6(4):195-7. Epub 2010 Jun 23 PMCID: PMC2900870 PMID:\n21037871.\n52.\nWolff AC, Hammond ME, Schwartz JN, et al. American Society of Clinical\nOncology/College of American Pathologists guideline recommendations for human\nepidermal growth factor receptor 2 testing in breast cancer. J Clin Oncol. 2007 Jan\n1;25(1):118-45. Epub 2006 Dec 11. American Society of Clinical Oncology; College of\nAmerican Pathologists. American Society of Clinical Oncology, Alexandria, VA, USA.)\nPMID: 17159189.\n53.\nYeo W, Lam KC, Zee B, et al. Hepatitis B reactivation in patients with\nhepatocellular carcinoma undergoing systemic chemotherapy. Ann Oncol\n2004;15:1661-6.\n54.\nLoomba R, Rowley A, Wesley R, et al. Systematic review: the effect of\npreventive lamivudine on hepatitis B reactivation during chemotherapy. Ann Intern Med\n2008;148(7):519-28.\n55.\nDivers J, RN BSN, Texas Oncology. Management of Stomatitis Associated with\nmTOR Inhibitors in Hormone Receptor-Positive HER2-Negative Advanced Breast\nCancer: Clinical Experiences from a Single Center. Presented at the 38th Annual\nOncology Nurses’ Society Congress, April 25-28, 2013. Novartis Internal\nCommunication.\n56.\nEisenhauer EA, Therasse P, Bogaerts J, et al. New response evaluation criteria\nin solid tumours: revised RECIST guideline (Version 1.1). Eur J Cancer 2009;45:22847.\n57.\nBubley GJ, Carducci M, Dahut W, et al. Eligibility and response guidelines for\nphase II clinical trials in androgen-independent prostate cancer: recommendations from\nthe Prostate-Specific Antigen Working Group. J Clin Oncol 1999;17:3461-7.

\n

58.\nScher HI, Halabi S, Tannock I, et al. Design and end points of clinical trials for\npatients with progressive prostate cancer and castrate levels of testosterone:\nrecommendations of the Prostate Cancer Clinical Trials Working Group. J Clin Oncol\n2008;26:1148-59.\n59.\nRustin GJ, Quinn M, Thigpen T, et al. Re: New guidelines to evaluate the\nresponse to treatment in solid tumors (ovarian cancer). J Natl Cancer Inst\n2004;96:487-8.\n60.\nVergote I, Rustin GJ, Eisenhauer EA, et al. Re: new guidelines to evaluate the\nresponse to treatment in solid tumors [ovarian cancer]. Gynecologic Cancer Intergroup.\nJ Natl Cancer Inst 2000;92:1534-5.\n61.\nOken MM, Creech RH, Tormey DC, et al. Toxicity and response criteria of the\nEastern Cooperative Oncology Group. Am J Clin Oncol 1982;5:649-55.

\n

20 Investigator’s Statement\n1.

\n

I have carefully read this protocol entitled “Randomized, Double-Blind,\nPlacebo-Controlled Phase II Trial of Fulvestrant (Faslodex) plus\nEverolimus in Post Menopausal Patients with Hormone-Receptor\nPositive Metastatic Breast Center Resistant to Aromatase Inhibitor\nTherapy, Version 2.0 dated 1/22/2014” (Protocol number PrE0102)\nand agree that it contains all the necessary information required to\nconduct the study. I agree to conduct the study as outlined in the protocol.

\n

2.

\n

I agree to conduct this study according to the moral, ethical and scientific\nprinciples governing clinical research as set out in the Declaration of\nHelsinki, the principles of GCP as described in 21 CFR and any applicable\nlocal requirements.

\n

3.

\n

I understand that this trial and any subsequent changes to this trial will not\nbe initiated without approval of the appropriate Institutional Review Board,\nand that all administrative requirements of the governing body of the\ninstitution will be complied with fully.

\n

4.

\n

Informed written consent will be obtained from all participating patients in\naccordance with institutional and FDA requirements as specified in Title\n21, Code of Federal Regulations, Part 50.

\n

5.

\n

I understand that my signature on the Case Report Form indicates that I\nhave carefully reviewed each page and accept full responsibility for the\ncontents thereof.

\n

6.

\n

I understand that the information presented in this study protocol is\nconfidential, and I hereby assure that no information based on the conduct\nof the study will be released without prior consent from PrECOG, LLC\nunless this requirement is superseded by the Food and Drug\nAdministration.

\n

Principal Investigator:\nPI Name:\nSite Name:\nSignature of PI:\nDate of Signature:

\n

\\\nMMM

\n

\\\nDD

\n

YYYY

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

See section 20 Investigator's Statement.

", + "instanceType": "NarrativeContentItem" + } + ], + "narrativeContents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "studyDefinitionDocument": { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "NCT01797120_PROTOCOL", + "label": "PrE0102: Randomized, Double-Blind, Placebo-Controlled Phase II Trial of Fulvestrant plus Everolimus", + "description": "Version 2.0, January 22 2014 protocol document for PrECOG study PrE0102 (NCT01797120).", + "language": { + "id": "Code_DocLang_1", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_DocType_1", + "extensionAttributes": [], + "code": "C70817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Protocol", + "instanceType": "Code" + }, + "templateName": "PrECOG Protocol Template", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_DocStatus_1", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_DocVersion_1", + "extensionAttributes": [], + "name": "PROTOCOL_VERSION_DATE", + "label": "Protocol Version Date", + "description": "Date of the final protocol version", + "type": { + "id": "Code_DocDate_1", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2014-01-22", + "geographicScopes": [], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_2", + "NarrativeContent_3", + "NarrativeContent_4", + "NarrativeContent_8", + "NarrativeContent_12" + ], + "previousId": null, + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_1_1", + "sectionNumber": "1.1", + "sectionTitle": "Background and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_1_2", + "sectionNumber": "1.2", + "sectionTitle": "Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_1_3", + "sectionNumber": "1.3", + "sectionTitle": "Endocrine Therapy for Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_5", + "NarrativeContent_6", + "NarrativeContent_7" + ], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_1_3_1", + "sectionNumber": "1.3.1", + "sectionTitle": "Fulvestrant for Post Menopausal Women with Breast Cancer", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_1_3_2", + "sectionNumber": "1.3.2", + "sectionTitle": "Fulvestrant for Aromatase Inhibitor (AI) Resistant Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_1_3_3", + "sectionNumber": "1.3.3", + "sectionTitle": "Rationale for Fulvestrant for this Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": null, + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_1_4", + "sectionNumber": "1.4", + "sectionTitle": "Everolimus (RAD001)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_9", + "NarrativeContent_10", + "NarrativeContent_11" + ], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_1_4_1", + "sectionNumber": "1.4.1", + "sectionTitle": "mTOR Pathway and Mechanism of Action", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_1_4_2", + "sectionNumber": "1.4.2", + "sectionTitle": "Pre-Clinical Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_1_4_3", + "sectionNumber": "1.4.3", + "sectionTitle": "Clinical Experience", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_10", + "nextId": null, + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_1_5", + "sectionNumber": "1.5", + "sectionTitle": "Rationale and Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_8", + "nextId": null, + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15" + ], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_2_1", + "sectionNumber": "2.1", + "sectionTitle": "Primary Objective", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_2_2", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": null, + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "3", + "sectionTitle": "Selection of Patients", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_17" + ], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_3_1", + "sectionNumber": "3.1", + "sectionTitle": "Eligibility Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "4", + "sectionTitle": "Randomization Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_21" + ], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_4_1", + "sectionNumber": "4.1", + "sectionTitle": "Ethics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_4_2", + "sectionNumber": "4.2", + "sectionTitle": "Regulatory Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_4_3", + "sectionNumber": "4.3", + "sectionTitle": "Patient Randomization", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": null, + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "5", + "sectionTitle": "Treatment Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_27", + "NarrativeContent_33", + "NarrativeContent_34", + "NarrativeContent_35" + ], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_5_1", + "sectionNumber": "5.1", + "sectionTitle": "Administration Schedule", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_5_2", + "sectionNumber": "5.2", + "sectionTitle": "Dosing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_25", + "NarrativeContent_26" + ], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_5_2_1", + "sectionNumber": "5.2.1", + "sectionTitle": "Fulvestrant (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_5_2_2", + "sectionNumber": "5.2.2", + "sectionTitle": "Everolimus or Placebo (Arm A and Arm B)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_25", + "nextId": null, + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_5_3", + "sectionNumber": "5.3", + "sectionTitle": "Dose Modifications and Toxicity Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_28", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_31", + "NarrativeContent_32" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_5_3_1", + "sectionNumber": "5.3.1", + "sectionTitle": "Dose Modifications General Guidelines for Everolimus/Placebo", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_5_3_2", + "sectionNumber": "5.3.2", + "sectionTitle": "Common Adverse Events Associated with Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_5_3_3", + "sectionNumber": "5.3.3", + "sectionTitle": "Concomitant Therapies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_5_3_4", + "sectionNumber": "5.3.4", + "sectionTitle": "Prohibited Therapies and Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_5_3_5", + "sectionNumber": "5.3.5", + "sectionTitle": "Administration of Everolimus and CYP3A4 Inhibitors/Inducers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_31", + "nextId": null, + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_5_4", + "sectionNumber": "5.4", + "sectionTitle": "Supportive Care", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_5_5", + "sectionNumber": "5.5", + "sectionTitle": "Duration of Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_5_6", + "sectionNumber": "5.6", + "sectionTitle": "Withdrawal of Patients from Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": null, + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "6", + "sectionTitle": "Measurement of Effect", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_37" + ], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_6_1", + "sectionNumber": "6.1", + "sectionTitle": "Antitumor Effect - Solid Tumors", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_38", + "NarrativeContent_39", + "NarrativeContent_40", + "NarrativeContent_41", + "NarrativeContent_42", + "NarrativeContent_43" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_6_1_1", + "sectionNumber": "6.1.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_6_1_2", + "sectionNumber": "6.1.2", + "sectionTitle": "Disease Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_6_1_3", + "sectionNumber": "6.1.3", + "sectionTitle": "Methods for Evaluation of Measurable Disease", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_6_1_4", + "sectionNumber": "6.1.4", + "sectionTitle": "Response Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_6_1_5", + "sectionNumber": "6.1.5", + "sectionTitle": "Duration of Response", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_6_1_6", + "sectionNumber": "6.1.6", + "sectionTitle": "Progression-Free Survival", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": null, + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "7", + "sectionTitle": "Study Parameters", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_7_1", + "sectionNumber": "7.1", + "sectionTitle": "Procedures by Visit", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_46", + "NarrativeContent_47", + "NarrativeContent_48", + "NarrativeContent_49", + "NarrativeContent_50" + ], + "previousId": null, + "nextId": null, + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_7_1_1", + "sectionNumber": "7.1.1", + "sectionTitle": "Pre-Study", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_7_1_2", + "sectionNumber": "7.1.2", + "sectionTitle": "Induction Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_7_1_3", + "sectionNumber": "7.1.3", + "sectionTitle": "End of Induction Phase / End of Treatment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_7_1_4", + "sectionNumber": "7.1.4", + "sectionTitle": "Continuation Phase", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_7_1_5", + "sectionNumber": "7.1.5", + "sectionTitle": "Follow-Up Off-Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": null, + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "8", + "sectionTitle": "Drug Formulation and Procurement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_59" + ], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_8_1", + "sectionNumber": "8.1", + "sectionTitle": "Everolimus", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56", + "NarrativeContent_57", + "NarrativeContent_58" + ], + "previousId": null, + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_8_1_1", + "sectionNumber": "8.1.1", + "sectionTitle": "Packaging and Labeling", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_8_1_2", + "sectionNumber": "8.1.2", + "sectionTitle": "Storage Requirements/Stability", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_8_1_3", + "sectionNumber": "8.1.3", + "sectionTitle": "Handling, Dispensing and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_8_1_4", + "sectionNumber": "8.1.4", + "sectionTitle": "Side Effects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_8_1_5", + "sectionNumber": "8.1.5", + "sectionTitle": "Investigational Product Records at Investigational Site(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_8_1_6", + "sectionNumber": "8.1.6", + "sectionTitle": "Return and Destruction of Investigational Product", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": null, + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_8_2", + "sectionNumber": "8.2", + "sectionTitle": "Fulvestrant", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": null, + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "9", + "sectionTitle": "Statistical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_61", + "NarrativeContent_62", + "NarrativeContent_63" + ], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_9_1", + "sectionNumber": "9.1", + "sectionTitle": "Primary Endpoint Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_9_2", + "sectionNumber": "9.2", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_9_3", + "sectionNumber": "9.3", + "sectionTitle": "Analyses of Other Secondary Endpoints", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": null, + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "10", + "sectionTitle": "Adverse Event Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_65", + "NarrativeContent_66", + "NarrativeContent_69" + ], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_10_1", + "sectionNumber": "10.1", + "sectionTitle": "Collection of Safety Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_10_2", + "sectionNumber": "10.2", + "sectionTitle": "Handling of Serious Adverse Events (SAEs)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_67", + "NarrativeContent_68" + ], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_10_2_1", + "sectionNumber": "10.2.1", + "sectionTitle": "SAE Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_10_2_2", + "sectionNumber": "10.2.2", + "sectionTitle": "SAE Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": null, + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_10_3", + "sectionNumber": "10.3", + "sectionTitle": "Reporting of Second Primary Cancers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": null, + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "11", + "sectionTitle": "Administrative", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_71", + "NarrativeContent_72", + "NarrativeContent_73", + "NarrativeContent_74", + "NarrativeContent_75", + "NarrativeContent_76", + "NarrativeContent_77", + "NarrativeContent_78" + ], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_79", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_11_1", + "sectionNumber": "11.1", + "sectionTitle": "Protocol Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_11_2", + "sectionNumber": "11.2", + "sectionTitle": "Institutional Review Board", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_11_3", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_11_4", + "sectionNumber": "11.4", + "sectionTitle": "Safety Communication", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_11_5", + "sectionNumber": "11.5", + "sectionTitle": "Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_11_6", + "sectionNumber": "11.6", + "sectionTitle": "Study Records", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": "NarrativeContent_77", + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_11_7", + "sectionNumber": "11.7", + "sectionTitle": "Electronic Case Report Form (eCRF) Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_76", + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_11_8", + "sectionNumber": "11.8", + "sectionTitle": "Records Retention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_77", + "nextId": null, + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "12", + "sectionTitle": "Glossary of Terms and List of Abbreviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_80", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "13", + "sectionTitle": "Appendix A: Eligibility Checklist", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "14", + "sectionTitle": "Appendix B: ECOG Performance Status Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "15", + "sectionTitle": "Appendix C: Medications that can Inhibit/Induce CYP3A4 and PgP", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "16", + "sectionTitle": "Appendix D: New York Heart Association (NYHA) Cardiac Classification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "17", + "sectionTitle": "Appendix E: CTEP Common Terminology Criteria for Adverse Events (CTCAE) Version 4.0", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "18", + "sectionTitle": "Appendix F: Patient Pill Diary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "19", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": "NarrativeContentItem_86", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "20", + "sectionTitle": "Investigator's Statement", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": null, + "contentItemId": "NarrativeContentItem_87", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } +} diff --git a/output/json/NCT12345678-define-20260716T1133.json b/output/json/NCT12345678-define-20260716T1133.json new file mode 100644 index 0000000..ef4daa9 --- /dev/null +++ b/output/json/NCT12345678-define-20260716T1133.json @@ -0,0 +1,33435 @@ +{ + "OID": "MDV.LZZT - Pilot.Version1.Design1", + "name": "MDV LZZT - Pilot", + "description": "Data Definitions for LZZT - Pilot", + "fileOID": "ODM.DEFINE-JSON.LZZT - Pilot.Version1.Design1", + "creationDateTime": "2026-07-16T11:33:00.031383+00:00", + "odmVersion": "1.3.2", + "fileType": "Snapshot", + "originator": "Define-JSON Processor", + "context": "Other", + "defineVersion": "2.1.0", + "studyOID": "ODM.LZZT - Pilot.Version1.Design1", + "studyName": "LZZT - Pilot", + "studyDescription": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "protocolName": "LZZT - Pilot", + "itemGroups": [ + { + "OID": "IG.DS", + "name": "DS", + "description": "Disposition", + "domain": "DS", + "purpose": "Tabulation", + "structure": "One record per disposition status or protocol milestone per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "DSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.DS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSSEQ", + "mandatory": true, + "name": "DSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSTERM", + "mandatory": true, + "name": "DSTERM", + "description": "Reported Term for the Disposition Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_2", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSDECOD", + "mandatory": true, + "name": "DSDECOD", + "description": "Standardized Disposition Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_1", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NCOMPLT" + }, + { + "OID": "IT.DS.DSCAT", + "mandatory": false, + "name": "DSCAT", + "description": "Category for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSCAT" + }, + { + "OID": "IT.DS.DSSCAT", + "mandatory": false, + "name": "DSSCAT", + "description": "Subcategory for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSSCAT" + }, + { + "OID": "IT.DS.DSSTDTC", + "mandatory": false, + "name": "DSSTDTC", + "description": "Start Date/Time of Disposition Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_3", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSSTDY", + "mandatory": false, + "name": "DSSTDY", + "description": "Study Day of Start of Disposition Event", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_1" + }, + { + "OID": "IG.IE", + "name": "IE", + "description": "Inclusion/Exclusion Criteria Not Met", + "domain": "IE", + "purpose": "Tabulation", + "structure": "One record per inclusion/exclusion criterion not met per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "IESEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.IE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IESEQ", + "mandatory": true, + "name": "IESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IETESTCD", + "mandatory": true, + "name": "IETESTCD", + "description": "Inclusion/Exclusion Criterion Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IETEST", + "mandatory": true, + "name": "IETEST", + "description": "Inclusion/Exclusion Criterion", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IECAT", + "mandatory": true, + "name": "IECAT", + "description": "Inclusion/Exclusion Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.IECAT" + }, + { + "OID": "IT.IE.IEORRES", + "mandatory": true, + "name": "IEORRES", + "description": "I/E Criterion Original Result", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_5", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.IE.IESTRESC", + "mandatory": true, + "name": "IESTRESC", + "description": "I/E Criterion Result in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.IE.IEDTC", + "mandatory": false, + "name": "IEDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_6", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_2" + }, + { + "OID": "IG.SC", + "name": "SC", + "description": "Subject Characteristics", + "domain": "SC", + "purpose": "Tabulation", + "structure": "One record per characteristic per visit per subject.", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SCSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.SC.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCSEQ", + "mandatory": true, + "name": "SCSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCTESTCD", + "mandatory": true, + "name": "SCTESTCD", + "description": "Subject Characteristic Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.SCTESTCD" + }, + { + "OID": "IT.SC.SCTEST", + "mandatory": true, + "name": "SCTEST", + "description": "Subject Characteristic", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.SCTEST" + }, + { + "OID": "IT.SC.SCCAT", + "mandatory": false, + "name": "SCCAT", + "description": "Category for Subject Characteristic", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCORRES", + "mandatory": false, + "name": "SCORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_26", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SC.SCSTRESC", + "mandatory": false, + "name": "SCSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCSTRESN", + "mandatory": false, + "name": "SCSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCDTC", + "mandatory": false, + "name": "SCDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_27", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_11" + }, + { + "OID": "IG.MH", + "name": "MH", + "description": "Medical History", + "domain": "MH", + "purpose": "Tabulation", + "structure": "One record per medical history event per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MHSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.MH.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHSEQ", + "mandatory": true, + "name": "MHSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHTERM", + "mandatory": true, + "name": "MHTERM", + "description": "Reported Term for the Medical History", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_30", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHDECOD", + "mandatory": false, + "name": "MHDECOD", + "description": "Dictionary-Derived Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_31", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHCAT", + "mandatory": false, + "name": "MHCAT", + "description": "Category for Medical History", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHSCAT", + "mandatory": false, + "name": "MHSCAT", + "description": "Subcategory for Medical History", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHPRESP", + "mandatory": false, + "name": "MHPRESP", + "description": "Medical History Event Pre-Specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MH.MHOCCUR", + "mandatory": false, + "name": "MHOCCUR", + "description": "Medical History Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MH.MHSTDTC", + "mandatory": false, + "name": "MHSTDTC", + "description": "Start Date/Time of Medical History Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_32", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHENDTC", + "mandatory": false, + "name": "MHENDTC", + "description": "End Date/Time of Medical History Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_33", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHENRF", + "mandatory": false, + "name": "MHENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_34", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.MH.MHENRTPT", + "mandatory": false, + "name": "MHENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_35", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.MH.MHENTPT", + "mandatory": false, + "name": "MHENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_36", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_14" + }, + { + "OID": "IG.SU", + "name": "SU", + "description": "Substance Use", + "domain": "SU", + "purpose": "Tabulation", + "structure": "One record per substance type per reported occurrence per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SUSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.SU.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUSEQ", + "mandatory": true, + "name": "SUSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUTRT", + "mandatory": true, + "name": "SUTRT", + "description": "Reported Name of Substance", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_37", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUCAT", + "mandatory": false, + "name": "SUCAT", + "description": "Category for Substance Use", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUSCAT", + "mandatory": false, + "name": "SUSCAT", + "description": "Subcategory for Substance Use", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUPRESP", + "mandatory": false, + "name": "SUPRESP", + "description": "SU Pre-Specified", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_38", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY_Y" + }, + { + "OID": "IT.SU.SUOCCUR", + "mandatory": false, + "name": "SUOCCUR", + "description": "SU Occurrence", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_39", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.SU.SUDOSE", + "mandatory": false, + "name": "SUDOSE", + "description": "Substance Use Consumption", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_40", + "dataType": "float", + "length": 12, + "displayFormat": "12.4", + "significantDigits": 4, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDOSTXT", + "mandatory": false, + "name": "SUDOSTXT", + "description": "Substance Use Consumption Text", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_41", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDOSU", + "mandatory": false, + "name": "SUDOSU", + "description": "Consumption Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_42", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.SU.SUDOSFRQ", + "mandatory": false, + "name": "SUDOSFRQ", + "description": "Use Frequency Per Interval", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_43", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.SU.SUSTDTC", + "mandatory": false, + "name": "SUSTDTC", + "description": "Start Date/Time of Substance Use", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_44", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUENDTC", + "mandatory": false, + "name": "SUENDTC", + "description": "End Date/Time of Substance Use", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_45", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDUR", + "mandatory": false, + "name": "SUDUR", + "description": "Duration of Substance Use", + "role": "Timing", + "dataType": "durationDatetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUSTRF", + "mandatory": false, + "name": "SUSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_46", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUENRF", + "mandatory": false, + "name": "SUENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_49", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUSTRTPT", + "mandatory": false, + "name": "SUSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_47", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUSTTPT", + "mandatory": false, + "name": "SUSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_48", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUENRTPT", + "mandatory": false, + "name": "SUENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_50", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUENTPT", + "mandatory": false, + "name": "SUENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_51", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_15" + }, + { + "OID": "IG.PR", + "name": "PR", + "description": "Procedures", + "domain": "PR", + "purpose": "Tabulation", + "structure": "One record per recorded procedure per occurrence per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "PRSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.PR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRSEQ", + "mandatory": true, + "name": "PRSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRTRT", + "mandatory": true, + "name": "PRTRT", + "description": "Reported Name of Procedure", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_83", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.PR.PRDECOD", + "mandatory": false, + "name": "PRDECOD", + "description": "Standardized Procedure Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_84", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.PROCEDUR" + }, + { + "OID": "IT.PR.PRCAT", + "mandatory": false, + "name": "PRCAT", + "description": "Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRSCAT", + "mandatory": false, + "name": "PRSCAT", + "description": "Subcategory", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRPRESP", + "mandatory": false, + "name": "PRPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_85", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY_Y" + }, + { + "OID": "IT.PR.PROCCUR", + "mandatory": false, + "name": "PROCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_86", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.PR.PRLOC", + "mandatory": false, + "name": "PRLOC", + "description": "Location of Procedure", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_87", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.PR.PRLAT", + "mandatory": false, + "name": "PRLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_88", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.PR.PRSTDTC", + "mandatory": false, + "name": "PRSTDTC", + "description": "Start Date/Time of Procedure", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_89", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.PR.PRENDTC", + "mandatory": false, + "name": "PRENDTC", + "description": "End Date/Time of Procedure", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_90", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_18" + }, + { + "OID": "IG.VS", + "name": "VS", + "description": "Vital Signs", + "domain": "VS", + "purpose": "Tabulation", + "structure": "One record per vital sign measurement per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.VS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSEQ", + "mandatory": true, + "name": "VSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSTESTCD", + "mandatory": true, + "name": "VSTESTCD", + "description": "Vital Signs Test Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTESTCD" + }, + { + "OID": "IT.VS.VSTEST", + "mandatory": true, + "name": "VSTEST", + "description": "Vital Signs Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTEST" + }, + { + "OID": "IT.VS.VSPOS", + "mandatory": false, + "name": "VSPOS", + "description": "Vital Signs Position of Subject", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.VS.VSORRES", + "mandatory": false, + "name": "VSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_94", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSORRESU", + "mandatory": false, + "name": "VSORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_95", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSSTRESC", + "mandatory": false, + "name": "VSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESN", + "mandatory": false, + "name": "VSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESU", + "mandatory": false, + "name": "VSSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSLOC", + "mandatory": false, + "name": "VSLOC", + "description": "Location of Vital Signs Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_96", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.VS.VSLAT", + "mandatory": false, + "name": "VSLAT", + "description": "Laterality", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.VS.VSLOBXFL", + "mandatory": false, + "name": "VSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.VS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSDTC", + "mandatory": false, + "name": "VSDTC", + "description": "Date/Time of Measurements", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_97", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_20" + }, + { + "OID": "IG.EG", + "name": "EG", + "description": "ECG Test Results", + "domain": "EG", + "purpose": "Tabulation", + "structure": "One record per ECG observation per replicate per time point or one record per ECG observation per beat per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "EGSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.EG.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGSEQ", + "mandatory": true, + "name": "EGSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGTESTCD", + "mandatory": true, + "name": "EGTESTCD", + "description": "ECG Test or Examination Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EGTESTCD" + }, + { + "OID": "IT.EG.EGTEST", + "mandatory": true, + "name": "EGTEST", + "description": "ECG Test or Examination Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EGTEST" + }, + { + "OID": "IT.EG.EGCAT", + "mandatory": false, + "name": "EGCAT", + "description": "Category for ECG", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGPOS", + "mandatory": false, + "name": "EGPOS", + "description": "ECG Position of Subject", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.EG.EGORRES", + "mandatory": false, + "name": "EGORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_116", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + } + }, + { + "OID": "IT.EG.EGORRESU", + "mandatory": false, + "name": "EGORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EG.EGSTRESC", + "mandatory": false, + "name": "EGSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Derived", + "source": "Vendor" + }, + "codeList": "CL.EGSTRESC" + }, + { + "OID": "IT.EG.EGSTRESN", + "mandatory": false, + "name": "EGSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Vendor" + } + }, + { + "OID": "IT.EG.EGSTRESU", + "mandatory": false, + "name": "EGSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Vendor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EG.EGMETHOD", + "mandatory": false, + "name": "EGMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_117", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.EGMETHOD" + }, + { + "OID": "IT.EG.EGLOBXFL", + "mandatory": false, + "name": "EGLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.EG.EGEVAL", + "mandatory": false, + "name": "EGEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_118", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.EG.EGCLSIG", + "mandatory": false, + "name": "EGCLSIG", + "description": "Clinically Significant, Collected", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_119", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.EG.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EG.EGDTC", + "mandatory": false, + "name": "EGDTC", + "description": "Date/Time of ECG", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_120", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_27" + }, + { + "OID": "IG.CM", + "name": "CM", + "description": "Concomitant/Prior Medications", + "domain": "CM", + "purpose": "Tabulation", + "structure": "One record per recorded intervention occurrence or constant-dosing interval per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "CMSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.CM.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSEQ", + "mandatory": true, + "name": "CMSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMTRT", + "mandatory": true, + "name": "CMTRT", + "description": "Reported Name of Drug, Med, or Therapy", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_266", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDECOD", + "mandatory": false, + "name": "CMDECOD", + "description": "Standardized Medication Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_267", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCAT", + "mandatory": false, + "name": "CMCAT", + "description": "Category for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSCAT", + "mandatory": false, + "name": "CMSCAT", + "description": "Subcategory for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMPRESP", + "mandatory": false, + "name": "CMPRESP", + "description": "CM Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMOCCUR", + "mandatory": false, + "name": "CMOCCUR", + "description": "CM Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMINDC", + "mandatory": false, + "name": "CMINDC", + "description": "Indication", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_269", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMCLAS", + "mandatory": false, + "name": "CMCLAS", + "description": "Medication Class", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_268", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCLASCD", + "mandatory": false, + "name": "CMCLASCD", + "description": "Medication Class Code", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMDOSE", + "mandatory": false, + "name": "CMDOSE", + "description": "Dose per Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_270", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSTXT", + "mandatory": false, + "name": "CMDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_271", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSU", + "mandatory": false, + "name": "CMDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_272", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.CM.CMDOSFRM", + "mandatory": false, + "name": "CMDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_273", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.CM.CMDOSFRQ", + "mandatory": false, + "name": "CMDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_274", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.CM.CMROUTE", + "mandatory": false, + "name": "CMROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_275", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.CM.CMSTDTC", + "mandatory": false, + "name": "CMSTDTC", + "description": "Start Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_276", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMENDTC", + "mandatory": false, + "name": "CMENDTC", + "description": "End Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_277", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMSTRF", + "mandatory": false, + "name": "CMSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_278", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENRF", + "mandatory": false, + "name": "CMENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_281", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTRTPT", + "mandatory": false, + "name": "CMSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_279", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTTPT", + "mandatory": false, + "name": "CMSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_280", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMENRTPT", + "mandatory": false, + "name": "CMENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_282", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENTPT", + "mandatory": false, + "name": "CMENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_283", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_55" + }, + { + "OID": "IG.MB", + "name": "MB", + "description": "Microbiology Specimen", + "domain": "MB", + "purpose": "Tabulation", + "structure": "One record per microbiology specimen finding per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MBSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.MB.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.MBSEQ", + "mandatory": true, + "name": "MBSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.MBTESTCD", + "mandatory": true, + "name": "MBTESTCD", + "description": "Microbiology Test or Finding Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBTESTCD" + }, + { + "OID": "IT.MB.MBTEST", + "mandatory": true, + "name": "MBTEST", + "description": "Microbiology Test or Finding Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBTEST" + }, + { + "OID": "IT.MB.MBTSTDTL", + "mandatory": false, + "name": "MBTSTDTL", + "description": "Measurement, Test or Examination Detail", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_592", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBFTSDTL" + }, + { + "OID": "IT.MB.MBORRES", + "mandatory": false, + "name": "MBORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_593", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + } + }, + { + "OID": "IT.MB.MBSTRESC", + "mandatory": false, + "name": "MBSTRESC", + "description": "Result or Finding in Standard Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Derived", + "source": "Vendor" + } + }, + { + "OID": "IT.MB.MBSPEC", + "mandatory": false, + "name": "MBSPEC", + "description": "Specimen Material Type", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_594", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.SPECTYPE" + }, + { + "OID": "IT.MB.MBMETHOD", + "mandatory": false, + "name": "MBMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_595", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.MB.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MB.MBDTC", + "mandatory": false, + "name": "MBDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_596", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_99" + }, + { + "OID": "IG.UR", + "name": "UR", + "description": "Urinary System Findings", + "domain": "UR", + "purpose": "Tabulation", + "structure": "One record per finding per location per per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "URSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.UR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URSEQ", + "mandatory": true, + "name": "URSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URTESTCD", + "mandatory": true, + "name": "URTESTCD", + "description": "Short Name of Urinary Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTSCD" + }, + { + "OID": "IT.UR.URTEST", + "mandatory": true, + "name": "URTEST", + "description": "Name of Urinary Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTS" + }, + { + "OID": "IT.UR.URORRES", + "mandatory": false, + "name": "URORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URSTRESC", + "mandatory": false, + "name": "URSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URMETHOD", + "mandatory": false, + "name": "URMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.UR.URLOBXFL", + "mandatory": false, + "name": "URLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.UR.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URDTC", + "mandatory": false, + "name": "URDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_101" + }, + { + "OID": "IG.EC", + "name": "EC", + "description": "Exposure as Collected", + "domain": "EC", + "purpose": "Tabulation", + "structure": "One record per protocol-specified study treatment, collected-dosing interval, per subject, per mood", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "ECSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.EC.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.ECSEQ", + "mandatory": true, + "name": "ECSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.ECREFID", + "mandatory": false, + "name": "ECREFID", + "description": "Reference ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_721", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECTRT", + "mandatory": true, + "name": "ECTRT", + "description": "Name of Treatment", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_720", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSE", + "mandatory": false, + "name": "ECDOSE", + "description": "Dose", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_722", + "dataType": "integer", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSTXT", + "mandatory": false, + "name": "ECDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_723", + "dataType": "text", + "length": 100, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSU", + "mandatory": false, + "name": "ECDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_724", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EC.ECDOSFRM", + "mandatory": false, + "name": "ECDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_725", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.EC.ECDOSFRQ", + "mandatory": false, + "name": "ECDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_726", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.EC.ECDOSRGM", + "mandatory": false, + "name": "ECDOSRGM", + "description": "Intended Dose Regimen", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_727", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECROUTE", + "mandatory": false, + "name": "ECROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_728", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.EC.ECLOC", + "mandatory": false, + "name": "ECLOC", + "description": "Location of Dose Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_729", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.EC.ECLAT", + "mandatory": false, + "name": "ECLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_730", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.EC.ECDIR", + "mandatory": false, + "name": "ECDIR", + "description": "Directionality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_731", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DIR" + }, + { + "OID": "IT.EC.ECSTDTC", + "mandatory": false, + "name": "ECSTDTC", + "description": "Start Date/Time of Treatment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_732", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECENDTC", + "mandatory": false, + "name": "ECENDTC", + "description": "End Date/Time of Treatment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_733", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_112" + }, + { + "OID": "IG.QS", + "name": "QS", + "description": "Questionnaires", + "domain": "QS", + "purpose": "Tabulation", + "structure": "One record per questionnaire per question per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "QSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.QS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSSEQ", + "mandatory": true, + "name": "QSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSTESTCD", + "mandatory": true, + "name": "QSTESTCD", + "description": "Question Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSTEST", + "mandatory": true, + "name": "QSTEST", + "description": "Question Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSCAT", + "mandatory": true, + "name": "QSCAT", + "description": "Category of Question", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.QSCAT" + }, + { + "OID": "IT.QS.QSORRES", + "mandatory": false, + "name": "QSORRES", + "description": "Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_740", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.QS.QSSTRESC", + "mandatory": false, + "name": "QSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSSTRESN", + "mandatory": false, + "name": "QSSTRESN", + "description": "Numeric Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSLOBXFL", + "mandatory": false, + "name": "QSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.QS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.QS.QSDTC", + "mandatory": false, + "name": "QSDTC", + "description": "Date/Time of Finding", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_741", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_114" + }, + { + "OID": "IG.AE", + "name": "AE", + "description": "Adverse Events", + "domain": "AE", + "purpose": "Tabulation", + "structure": "One record per adverse event per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "AESEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.AE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESEQ", + "mandatory": true, + "name": "AESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AETERM", + "mandatory": true, + "name": "AETERM", + "description": "Reported Term for the Adverse Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_785", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AELLT", + "mandatory": false, + "name": "AELLT", + "description": "Lowest Level Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AELLTCD", + "mandatory": false, + "name": "AELLTCD", + "description": "Lowest Level Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEDECOD", + "mandatory": true, + "name": "AEDECOD", + "description": "Dictionary-Derived Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_786", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEPTCD", + "mandatory": false, + "name": "AEPTCD", + "description": "Preferred Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLT", + "mandatory": false, + "name": "AEHLT", + "description": "High Level Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLTCD", + "mandatory": false, + "name": "AEHLTCD", + "description": "High Level Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLGT", + "mandatory": false, + "name": "AEHLGT", + "description": "High Level Group Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLGTCD", + "mandatory": false, + "name": "AEHLGTCD", + "description": "High Level Group Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AECAT", + "mandatory": false, + "name": "AECAT", + "description": "Category for Adverse Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESCAT", + "mandatory": false, + "name": "AESCAT", + "description": "Subcategory for Adverse Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEPRESP", + "mandatory": false, + "name": "AEPRESP", + "description": "Pre-Specified Adverse Event", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.AE.AEBODSYS", + "mandatory": false, + "name": "AEBODSYS", + "description": "Body System or Organ Class", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEBDSYCD", + "mandatory": false, + "name": "AEBDSYCD", + "description": "Body System or Organ Class Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESOC", + "mandatory": false, + "name": "AESOC", + "description": "Primary System Organ Class", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESOCCD", + "mandatory": false, + "name": "AESOCCD", + "description": "Primary System Organ Class Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AELOC", + "mandatory": false, + "name": "AELOC", + "description": "Location of Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_787", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.AE.AESEV", + "mandatory": false, + "name": "AESEV", + "description": "Severity/Intensity", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_788", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.AESEV" + }, + { + "OID": "IT.AE.AESER", + "mandatory": false, + "name": "AESER", + "description": "Serious Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_789", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AEACN", + "mandatory": false, + "name": "AEACN", + "description": "Action Taken with Study Treatment", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_790", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ACN" + }, + { + "OID": "IT.AE.AEACNOTH", + "mandatory": false, + "name": "AEACNOTH", + "description": "Other Action Taken", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_791", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEREL", + "mandatory": false, + "name": "AEREL", + "description": "Causality", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_792", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AERELNST", + "mandatory": false, + "name": "AERELNST", + "description": "Relationship to Non-Study Treatment", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_793", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEPATT", + "mandatory": false, + "name": "AEPATT", + "description": "Pattern of Adverse Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_794", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEOUT", + "mandatory": false, + "name": "AEOUT", + "description": "Outcome of Adverse Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_795", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.OUT" + }, + { + "OID": "IT.AE.AESCAN", + "mandatory": false, + "name": "AESCAN", + "description": "Involves Cancer", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_796", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESCONG", + "mandatory": false, + "name": "AESCONG", + "description": "Congenital Anomaly or Birth Defect", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_797", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESDISAB", + "mandatory": false, + "name": "AESDISAB", + "description": "Persist or Signif Disability/Incapacity", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_798", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESDTH", + "mandatory": false, + "name": "AESDTH", + "description": "Results in Death", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_799", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESHOSP", + "mandatory": false, + "name": "AESHOSP", + "description": "Requires or Prolongs Hospitalization", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_800", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESLIFE", + "mandatory": false, + "name": "AESLIFE", + "description": "Is Life Threatening", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_801", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESOD", + "mandatory": false, + "name": "AESOD", + "description": "Occurred with Overdose", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_802", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESMIE", + "mandatory": false, + "name": "AESMIE", + "description": "Other Medically Important Serious Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_803", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AECONTRT", + "mandatory": false, + "name": "AECONTRT", + "description": "Concomitant or Additional Trtmnt Given", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_804", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AETOXGR", + "mandatory": false, + "name": "AETOXGR", + "description": "Standard Toxicity Grade", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_805", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AESTDTC", + "mandatory": false, + "name": "AESTDTC", + "description": "Start Date/Time of Adverse Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_806", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEENDTC", + "mandatory": false, + "name": "AEENDTC", + "description": "End Date/Time of Adverse Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_807", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEENRF", + "mandatory": false, + "name": "AEENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_808", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.AE.AEENRTPT", + "mandatory": false, + "name": "AEENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_809", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.AE.AEENTPT", + "mandatory": false, + "name": "AEENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_810", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_135" + }, + { + "OID": "IG.MK", + "name": "MK", + "description": "Musculoskeletal System Findings", + "domain": "MK", + "purpose": "Tabulation", + "structure": "One record per assessment per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MKSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.MK.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSEQ", + "mandatory": true, + "name": "MKSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKTESTCD", + "mandatory": true, + "name": "MKTESTCD", + "description": "Short Name of Musculoskeletal Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MUSCTSCD" + }, + { + "OID": "IT.MK.MKTEST", + "mandatory": true, + "name": "MKTEST", + "description": "Name of Musculoskeletal Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MUSCTS" + }, + { + "OID": "IT.MK.MKORRES", + "mandatory": false, + "name": "MKORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_920", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MK.MKORRESU", + "mandatory": false, + "name": "MKORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_921", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.MK.MKSTRESC", + "mandatory": false, + "name": "MKSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSTRESN", + "mandatory": false, + "name": "MKSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSTRESU", + "mandatory": false, + "name": "MKSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.MK.MKLOC", + "mandatory": false, + "name": "MKLOC", + "description": "Location Used for the Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_922", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.MK.MKLAT", + "mandatory": false, + "name": "MKLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_923", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.MK.MKMETHOD", + "mandatory": false, + "name": "MKMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_924", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.MK.MKLOBXFL", + "mandatory": false, + "name": "MKLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MK.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MK.MKDTC", + "mandatory": false, + "name": "MKDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_925", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_160" + }, + { + "OID": "IG.TS", + "name": "TS", + "description": "Trial Summary", + "domain": "TS", + "purpose": "Tabulation", + "structure": "One record per trial summary parameter value", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "TSPARMCD", + "TSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSSEQ", + "mandatory": true, + "name": "TSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSPARMCD", + "mandatory": true, + "name": "TSPARMCD", + "description": "Trial Summary Parameter Short Name", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_949", + "dataType": "text", + "length": null, + "codeList": "CL.TSPARMCD" + }, + { + "OID": "IT.TS.TSPARM", + "mandatory": true, + "name": "TSPARM", + "description": "Trial Summary Parameter", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_950", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TSPARM" + }, + { + "OID": "IT.TS.TSVAL", + "mandatory": false, + "name": "TSVAL", + "description": "Parameter Value", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_951", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVALCD", + "mandatory": false, + "name": "TSVALCD", + "description": "Parameter Value Code", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_952", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVCDREF", + "mandatory": false, + "name": "TSVCDREF", + "description": "Name of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_953", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DICTNAM" + }, + { + "OID": "IT.TS.TSVCDVER", + "mandatory": false, + "name": "TSVCDVER", + "description": "Version of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_954", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_162", + "slices": [ + { + "OID": "VL.TS.TSPARMCD", + "name": "VL_TS_TSPARMCD", + "type": "ValueList", + "wasDerivedFrom": "IT.TS.TSPARMCD", + "items": [ + { + "OID": "IT.TS.TSPARMCD.COMPTRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.8c559472" + ] + }, + { + "OID": "IT.TS.TSPARMCD.CRMDUR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.bcc79825" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INDIC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e5769859" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INTTYPE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d3e89d3f" + ] + }, + { + "OID": "IT.TS.TSPARMCD.NARMS", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.efd2a465" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJPRIM", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.fe255586" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.62794b6c" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSPRI", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.4266ae9d" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.1d6311e2" + ] + }, + { + "OID": "IT.TS.TSPARMCD.SPONSOR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e06f8db5" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TITLE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d94c6616" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d368cfb2" + ] + } + ] + } + ] + }, + { + "OID": "IG.FT", + "name": "FT", + "description": "Functional Tests", + "domain": "FT", + "purpose": "Tabulation", + "structure": "One record per Functional Test finding per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "FTSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.FT.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSEQ", + "mandatory": true, + "name": "FTSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTTESTCD", + "mandatory": true, + "name": "FTTESTCD", + "description": "Short Name of Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTTEST", + "mandatory": true, + "name": "FTTEST", + "description": "Name of Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTCAT", + "mandatory": true, + "name": "FTCAT", + "description": "Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.FTCAT" + }, + { + "OID": "IT.FT.FTSCAT", + "mandatory": false, + "name": "FTSCAT", + "description": "Subcategory", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTORRES", + "mandatory": false, + "name": "FTORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTORRESU", + "mandatory": false, + "name": "FTORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.FT.FTSTRESC", + "mandatory": false, + "name": "FTSTRESC", + "description": "Result or Finding in Standard Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSTRESN", + "mandatory": false, + "name": "FTSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSTRESU", + "mandatory": false, + "name": "FTSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.FT.FTSTAT", + "mandatory": false, + "name": "FTSTAT", + "description": "Completion Status", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ND" + }, + { + "OID": "IT.FT.FTREASND", + "mandatory": false, + "name": "FTREASND", + "description": "Reason Not Done", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTLOBXFL", + "mandatory": false, + "name": "FTLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.FT.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTDTC", + "mandatory": false, + "name": "FTDTC", + "description": "Date/Time of Test", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_172" + }, + { + "OID": "IG.TA", + "name": "TA", + "description": "Trial Arms", + "domain": "TA", + "purpose": "Tabulation", + "structure": "One record per planned Element per Arm", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ARMCD", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TA.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.ARMCD", + "mandatory": true, + "name": "ARMCD", + "description": "Planned Arm Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARMCD" + }, + { + "OID": "IT.TA.ARM", + "mandatory": true, + "name": "ARM", + "description": "Description of Planned Arm", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARM" + }, + { + "OID": "IT.TA.TAETORD", + "mandatory": true, + "name": "TAETORD", + "description": "Planned Order of Element within Arm", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TA.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TA.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TA.TABRANCH", + "mandatory": false, + "name": "TABRANCH", + "description": "Branch", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.TATRANS", + "mandatory": false, + "name": "TATRANS", + "description": "Transition Rule", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.EPOCH", + "mandatory": true, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + } + ] + }, + { + "OID": "IG.TE", + "name": "TE", + "description": "Trial Elements", + "domain": "TE", + "purpose": "Tabulation", + "structure": "One record per planned Element", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TE.ELEMENT", + "mandatory": true, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TE.TESTRL", + "mandatory": true, + "name": "TESTRL", + "description": "Rule for Start of Element", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ] + }, + { + "OID": "IG.SV", + "name": "SV", + "description": "Subject Visits", + "domain": "SV", + "purpose": "Tabulation", + "structure": "One record per actual or planned visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VISITNUM" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SV.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISITNUM", + "mandatory": true, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Topic", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISIT", + "mandatory": false, + "name": "VISIT", + "description": "Visit Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.SVPRESP", + "mandatory": false, + "name": "SVPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVOCCUR", + "mandatory": false, + "name": "SVOCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVCNTMOD", + "mandatory": false, + "name": "SVCNTMOD", + "description": "Contact Mode", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.CNTMODE" + }, + { + "OID": "IT.SV.SVSTDTC", + "mandatory": false, + "name": "SVSTDTC", + "description": "Start Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SV.SVENDTC", + "mandatory": false, + "name": "SVENDTC", + "description": "End Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + }, + { + "OID": "IG.SE", + "name": "SE", + "description": "Subject Elements", + "domain": "SE", + "purpose": "Tabulation", + "structure": "One record per actual Element per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SESTDTC" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.SESEQ", + "mandatory": true, + "name": "SESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.SE.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.SE.EPOCH", + "mandatory": false, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + }, + { + "OID": "IT.SE.SESTDTC", + "mandatory": true, + "name": "SESTDTC", + "description": "Start Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SE.SEENDTC", + "mandatory": false, + "name": "SEENDTC", + "description": "End Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + } + ], + "conditions": [ + { + "OID": "COND.TS.TSPARMCD.4b2c750e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "COMPTRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.745804cb", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "CRMDUR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.82dcbb4a", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INDIC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.de0404c1", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INTTYPE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.1d8ed13f", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "NARMS" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.cccc9db0", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJPRIM" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.863c5858", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.69b92c86", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSPRI" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.df99032e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.5b1e67a5", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "SPONSOR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.90f47ac3", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TITLE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.e2190e21", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + } + ], + "whereClauses": [ + { + "OID": "WC.TS.8c559472", + "conditions": [ + "COND.TS.TSPARMCD.4b2c750e" + ] + }, + { + "OID": "WC.TS.bcc79825", + "conditions": [ + "COND.TS.TSPARMCD.745804cb" + ] + }, + { + "OID": "WC.TS.e5769859", + "conditions": [ + "COND.TS.TSPARMCD.82dcbb4a" + ] + }, + { + "OID": "WC.TS.d3e89d3f", + "conditions": [ + "COND.TS.TSPARMCD.de0404c1" + ] + }, + { + "OID": "WC.TS.efd2a465", + "conditions": [ + "COND.TS.TSPARMCD.1d8ed13f" + ] + }, + { + "OID": "WC.TS.fe255586", + "conditions": [ + "COND.TS.TSPARMCD.cccc9db0" + ] + }, + { + "OID": "WC.TS.62794b6c", + "conditions": [ + "COND.TS.TSPARMCD.863c5858" + ] + }, + { + "OID": "WC.TS.4266ae9d", + "conditions": [ + "COND.TS.TSPARMCD.69b92c86" + ] + }, + { + "OID": "WC.TS.1d6311e2", + "conditions": [ + "COND.TS.TSPARMCD.df99032e" + ] + }, + { + "OID": "WC.TS.e06f8db5", + "conditions": [ + "COND.TS.TSPARMCD.5b1e67a5" + ] + }, + { + "OID": "WC.TS.d94c6616", + "conditions": [ + "COND.TS.TSPARMCD.90f47ac3" + ] + }, + { + "OID": "WC.TS.d368cfb2", + "conditions": [ + "COND.TS.TSPARMCD.e2190e21" + ] + } + ], + "codeLists": [ + { + "OID": "CL.ARMCD", + "name": "ARM Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Placebo" + }, + { + "codedValue": "Xanomeline Low Dose" + }, + { + "codedValue": "Xanomeline High Dose" + } + ] + }, + { + "OID": "CL.ARM", + "name": "ARM", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Placebo" + }, + { + "codedValue": "Xanomeline Low Dose" + }, + { + "codedValue": "Xanomeline High Dose" + } + ] + }, + { + "OID": "CL.ELEMENT", + "name": "Description of Element", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Screening" + }, + { + "codedValue": "Placebo" + }, + { + "codedValue": "Low" + }, + { + "codedValue": "High - Start" + }, + { + "codedValue": "High - Middle" + }, + { + "codedValue": "High - End" + }, + { + "codedValue": "Follow up" + } + ] + }, + { + "OID": "CL.ETCD", + "name": "Element Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "EL1", + "decode": "Screening" + }, + { + "codedValue": "EL2", + "decode": "Placebo" + }, + { + "codedValue": "EL3", + "decode": "Low" + }, + { + "codedValue": "EL4", + "decode": "High - Start" + }, + { + "codedValue": "EL5", + "decode": "High - Middle" + }, + { + "codedValue": "EL6", + "decode": "High - End" + }, + { + "codedValue": "EL7", + "decode": "Follow up" + } + ] + }, + { + "OID": "CL.EPOCH", + "name": "Epoch", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99079", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Screening", + "coding": { + "code": "C202487", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 1", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 2", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 3", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Follow-up", + "coding": { + "code": "C202578", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.ad42d7e1", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "INFORMED CONSENT OBTAINED", + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED" + } + ] + } + ] + }, + { + "OID": "CL.39e500d6", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RANDOMIZED", + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED" + } + ] + } + ] + }, + { + "OID": "CL.30a86bdd", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "X-RAY", + "coding": [ + { + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "X-RAY" + } + ] + } + ] + }, + { + "OID": "CL.20024ecd", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "beats/min", + "coding": [ + { + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min" + } + ] + } + ] + }, + { + "OID": "CL.da016f8d", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "breaths/min", + "coding": [ + { + "code": "C49674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "breaths/min" + } + ] + } + ] + }, + { + "OID": "CL.798c8fb6", + "name": "EGORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "deg", + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "deg" + } + ] + } + ] + }, + { + "OID": "CL.6751dc8e", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CT SCAN", + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CT SCAN" + } + ] + } + ] + }, + { + "OID": "CL.5ae118a0", + "name": "PRLOC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CHEST", + "coding": [ + { + "code": "C25389", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CHEST" + } + ] + } + ] + }, + { + "OID": "CL.35f151cb", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "MRI", + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + } + ] + }, + { + "OID": "CL.bfc80e1f", + "name": "PRLOC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BRAIN", + "coding": [ + { + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN" + } + ] + } + ] + }, + { + "OID": "CL.af8f8a19", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BLOOD", + "coding": [ + { + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD" + } + ] + } + ] + }, + { + "OID": "CL.1aeb2034", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ERYTHROCYTES", + "coding": [ + { + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES" + } + ] + } + ] + }, + { + "OID": "CL.a00fe0a9", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "fL", + "coding": [ + { + "code": "C64780", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "fL" + } + ] + } + ] + }, + { + "OID": "CL.68e5ab5a", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "10^9/L", + "coding": [ + { + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L" + } + ] + } + ] + }, + { + "OID": "CL.2c53325c", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "10^6/L", + "coding": [ + { + "code": "C67452", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^6/L" + } + ] + } + ] + }, + { + "OID": "CL.9e69169e", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM OR PLASMA", + "coding": [ + { + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA" + } + ] + } + ] + }, + { + "OID": "CL.c75bb752", + "name": "MBTSTDTL Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "DETECTION", + "coding": [ + { + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION" + } + ] + } + ] + }, + { + "OID": "CL.bbc50609", + "name": "MBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM", + "coding": [ + { + "code": "C13325", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM" + } + ] + } + ] + }, + { + "OID": "CL.bdb73f2b", + "name": "MBMETHOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "LINE PROBE ASSAY", + "coding": [ + { + "code": "C102656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "LINE PROBE ASSAY" + } + ] + } + ] + }, + { + "OID": "CL.5183f82c", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "URINE", + "coding": [ + { + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE" + } + ] + } + ] + }, + { + "OID": "CL.5fc938fc", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "STOOL", + "coding": [ + { + "code": "C13234", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "STOOL" + } + ] + } + ] + }, + { + "OID": "CL.b8dca4b6", + "name": "QSEVAL Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CAREGIVER", + "coding": [ + { + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER" + } + ] + } + ] + }, + { + "OID": "CL.d8fccc32", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SITE TRANSFER", + "coding": [ + { + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SITE TRANSFER" + } + ] + } + ] + }, + { + "OID": "CL.a3e2e2db", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "coding": [ + { + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY" + } + ] + } + ] + }, + { + "OID": "CL.7cfd6cc5", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "mmHg", + "coding": [ + { + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg" + } + ] + } + ] + }, + { + "OID": "CL.1e00cfce", + "name": "TSPARMCD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "EGCTMON", + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON" + } + ] + } + ] + }, + { + "OID": "CL.NCOMPLT", + "name": "Completion/Reason for Non-Completion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66727", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSCAT", + "name": "Category of Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74558", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSSCAT", + "name": "Subcategory for Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C170443", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.IECAT", + "name": "Category of Inclusion/Exclusion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66797", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY", + "name": "No Yes Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.AGEU", + "name": "Age Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66781", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SEX", + "name": "Sex", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66731", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SCTESTCD", + "name": "Subject Characteristic Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74559", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SCTEST", + "name": "Subject Characteristic Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C103330", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.STENRF", + "name": "Relation to Reference Period", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66728", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY_Y", + "name": "No Yes Response (Subset Y)", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY_NY", + "name": "No Yes Response (Subset NY)", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.UNIT", + "name": "Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71620", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FREQ", + "name": "Frequency", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71113", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.PROCEDUR", + "name": "Procedure", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C101858", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "CT SCAN", + "decode": "CAT Scan", + "coding": { + "code": "C17204", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "MRI", + "decode": "Magnetic Resonance Imaging", + "coding": { + "code": "C16809", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "X-RAY", + "decode": "Static X-Ray", + "coding": { + "code": "C38101", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.LOC", + "name": "Anatomical Location", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74456", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "BRAIN", + "decode": "Nervous System, Brain", + "coding": { + "code": "C12439", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "CHEST", + "decode": "Chest", + "coding": { + "code": "C25389", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.LAT", + "name": "Laterality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99073", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTESTCD", + "name": "Vital Signs Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66741", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTEST", + "name": "Vital Signs Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.POSITION", + "name": "Position", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71148", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSRESU", + "name": "Units for Vital Signs Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66770", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGTESTCD", + "name": "ECG Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGTEST", + "name": "ECG Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGSTRESC", + "name": "ECG Result", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71150", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGMETHOD", + "name": "ECG Test Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71151", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EVAL", + "name": "Evaluator", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78735", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "CAREGIVER", + "decode": "Caregiver", + "coding": { + "code": "C17445", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.FRM", + "name": "Dosage Form", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66726", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ROUTE", + "name": "Route of Administration Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66729", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTESTCD", + "name": "Laboratory Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C65047", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTEST", + "name": "Laboratory Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67154", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBTESTCD", + "name": "Microbiology Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C120527", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBTEST", + "name": "Microbiology Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C120528", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBFTSDTL", + "name": "Microbiology Findings Test Details", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C174225", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "DETECTION", + "decode": "", + "coding": { + "code": "C174330", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.SPECTYPE", + "name": "Specimen Type", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78734", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "SERUM", + "decode": "Sera", + "coding": { + "code": "C13325", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.METHOD", + "name": "Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C85492", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "LINE PROBE ASSAY", + "decode": "LiPA", + "coding": { + "code": "C102656", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.URNSTSCD", + "name": "Urinary System Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129942", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTS", + "name": "Urinary System Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129941", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DIR", + "name": "Directionality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99074", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.QSCAT", + "name": "Category of Questionnaire", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C100129", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.AESEV", + "name": "Severity/Intensity Scale for Adverse Events", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66769", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ACN", + "name": "Action Taken with Study Treatment", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66767", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.OUT", + "name": "Outcome of Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66768", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MUSCTSCD", + "name": "Musculoskeletal System Finding Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C127269", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MUSCTS", + "name": "Musculoskeletal System Finding Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C127270", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARMCD", + "name": "Trial Summary Parameter Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66738", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "EGCTMON", + "decode": "ECG Continuous Monitoring", + "coding": { + "code": "C119561", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.TSPARM", + "name": "Trial Summary Parameter Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "ECG Continuous Monitoring", + "decode": "ECG Continuous Monitoring", + "coding": { + "code": "C119561", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.DICTNAM", + "name": "Dictionary Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66788", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FTCAT", + "name": "Category of Functional Test", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C115304", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ND", + "name": "Not Done", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66789", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.CNTMODE", + "name": "Mode of Subject Contact", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C171445", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "IN PERSON", + "decode": "In-Person", + "coding": { + "code": "C175574", + "codeSystem": "nci:ExtCodeID" + } + } + ] + } + ], + "methods": [], + "comments": [], + "standards": [ + { + "OID": "STD.SDTMIG", + "name": "SDTMIG", + "type": "IG", + "version": "3.4", + "status": "FINAL" + }, + { + "OID": "STD.SDTMCT", + "name": "CDISC/NCI", + "type": "CT", + "version": "2026-03-27", + "status": "FINAL", + "publishingSet": "SDTM" + } + ], + "annotatedCRF": [], + "concepts": [ + { + "OID": "CONC.BiomedicalConcept_1", + "name": "Informed Consent", + "label": null, + "aliases": [ + "Informed Consent Obtained" + ], + "href": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_2", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_3", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_2", + "name": "Inclusion Criteria", + "label": "Inclusion Criteria", + "aliases": [ + "Inclusion" + ], + "href": "/mdr/bc/biomedicalconcepts/C25532", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_4", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_5", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_6", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Inclusion Criteria" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_3", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "aliases": [ + "Inclusion Exclusion Criteria Yes No Indicator", + "IEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83063", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_7", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_8", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_4", + "name": "Exclusion Criteria", + "label": "Exclusion Criteria", + "aliases": [ + "Exclusion" + ], + "href": "/mdr/bc/biomedicalconcepts/C25370", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_9", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_10", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_11", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Exclusion Criteria" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_5", + "name": "Subject is Randomized", + "label": "Subject is Randomized", + "aliases": [ + "Randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_12", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_13", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_14", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_6", + "name": "Race", + "label": "Race", + "aliases": [ + "Racial Group" + ], + "href": "/mdr/bc/biomedicalconcepts/C17049", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_15", + "name": "RACE", + "label": "RACE", + "mandatory": false, + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_16", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Race" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_7", + "name": "Ethnic Group", + "label": "Ethnic Group", + "aliases": [ + "Ethnicity", + "Ethnic Origin" + ], + "href": "/mdr/bc/biomedicalconcepts/C16564", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_17", + "name": "ETHNIC", + "label": "ETHNIC", + "mandatory": false, + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_18", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_8", + "name": "Subject Age", + "label": "Subject Age", + "aliases": [ + "Age" + ], + "href": "/mdr/bc/biomedicalconcepts/C69260", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_19", + "name": "AGE", + "label": "AGE", + "mandatory": false, + "coding": [ + { + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_20", + "name": "AGEU", + "label": "AGEU", + "mandatory": false, + "coding": [ + { + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_21", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C69260", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Subject Age" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_9", + "name": "Birth Date and Time", + "label": "Birth Date and Time", + "aliases": [ + "BRTHDTC", + "Date/Time of Birth" + ], + "href": "/mdr/bc/biomedicalconcepts/C83217", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_22", + "name": "BRTHDTC", + "label": "BRTHDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_23", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83217", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Birth Date and Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_10", + "name": "Sex", + "label": null, + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C28421", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_24", + "name": "SEX", + "label": "SEX", + "mandatory": false, + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_25", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_11", + "name": "Education Level", + "label": "Education Level", + "aliases": [ + "EDULEVEL", + "Education", + "Education Level", + "Education Level Completed", + "education_level", + "Educational Attainment", + "Educational Level", + "Level of Education Attained" + ], + "href": "/mdr/bc/biomedicalconcepts/C17953", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_26", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_27", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C17953", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Education Level" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_12", + "name": "Number of Years of Education", + "label": "Number of Years of Education", + "aliases": [ + "EDUYRNUM", + "Number of Years of Education" + ], + "href": "/mdr/bc/biomedicalconcepts/C122393", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_28", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_29", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C122393", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Number of Years of Education" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_14", + "name": "Solicited Medical History", + "label": "Solicited Medical History", + "aliases": [ + "Medical History", + "Medical History Collection" + ], + "href": "/mdr/bc/biomedicalconcepts/C200145", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_30", + "name": "MHTERM", + "label": "MHTERM", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_31", + "name": "MHDECOD", + "label": "MHDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_32", + "name": "MHSTDTC", + "label": "MHSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_33", + "name": "MHENDTC", + "label": "MHENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_34", + "name": "MHENRF", + "label": "MHENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_35", + "name": "MHENRTPT", + "label": "MHENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_36", + "name": "MHENTPT", + "label": "MHENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C200145", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Medical History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_15", + "name": "Alcohol Use History", + "label": "Alcohol Use History", + "aliases": [ + "Alcohol History", + "Alcohol Use" + ], + "href": "/mdr/bc/biomedicalconcepts/C81229", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_37", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_38", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_39", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_40", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_41", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_42", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_43", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_44", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_45", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_46", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_47", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_48", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_49", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_50", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_51", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alcohol Use History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_16", + "name": "Caffeine Use History", + "label": "Caffeine Use History", + "aliases": [ + "Caffeine History", + "Caffeine Use" + ], + "href": "/mdr/bc/biomedicalconcepts/C201990", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_52", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_53", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_54", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_55", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_56", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_57", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_58", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_59", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_60", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_61", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_62", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_63", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_64", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_65", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_66", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Caffeine Use History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_17", + "name": "History of Tobacco Use", + "label": "History of Tobacco Use", + "aliases": [ + "Tobacco Use", + "Tobacco Use History" + ], + "href": "/mdr/bc/biomedicalconcepts/C181760", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_67", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_68", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_69", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_70", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_71", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_72", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_73", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_74", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_75", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_76", + "name": "SUDUR", + "label": "SUDUR", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_77", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_78", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_79", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_80", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_81", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_82", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C181760", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "History of Tobacco Use" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_18", + "name": "X-Ray Imaging", + "label": "X-Ray Imaging", + "aliases": [ + "Conventional X-Ray", + "Medical Imaging", + "X-Ray", + "Static X-Ray" + ], + "href": "/mdr/bc/biomedicalconcepts/C38101", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_83", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_84", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.30a86bdd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_85", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_86", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_87", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_88", + "name": "PRLAT", + "label": "PRLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_89", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_90", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "X-Ray Imaging" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_19", + "name": "Subject is Randomized", + "label": null, + "aliases": [ + "Randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_91", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_92", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_93", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_20", + "name": "Body Temperature", + "label": "Body Temperature", + "aliases": [ + "Temperature" + ], + "href": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_94", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_95", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_96", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_97", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_21", + "name": "Body Weight", + "label": "Body Weight", + "aliases": [ + "WEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_98", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_99", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_100", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_22", + "name": "Body Height", + "label": "Body Height", + "aliases": [ + "HEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C164634", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_101", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_102", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_103", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C164634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Height" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_23", + "name": "Pulse Rate", + "label": "Pulse Rate", + "aliases": [ + "Pulse" + ], + "href": "/mdr/bc/biomedicalconcepts/C49676", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_104", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_105", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_106", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_107", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_108", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_109", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_24", + "name": "Respiratory Rate", + "label": "Respiratory Rate", + "aliases": [ + "RESP", + "RESPRATE" + ], + "href": "/mdr/bc/biomedicalconcepts/C49678", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_110", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_111", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.da016f8d" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_112", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49678", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_25", + "name": "Body Mass Index", + "label": "Body Mass Index", + "aliases": [ + "BMI", + "Quetelet Index" + ], + "href": "/mdr/bc/biomedicalconcepts/C16358", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_113", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_114", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_115", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Mass Index" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_26", + "name": "Blood Pressure", + "label": "Blood Pressure", + "aliases": [ + "BP" + ], + "href": "/mdr/bc/biomedicalconcepts/C54706", + "properties": [], + "coding": [ + { + "code": "C54706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_27", + "name": "Electrocardiogram Analysis", + "label": "Electrocardiogram Analysis", + "aliases": [ + "ECG Analysis", + "EKG Analysis", + "Electrocardiogram Interpretation", + "ECG Interpretation", + "EKG Interpretation" + ], + "href": "/mdr/bc/biomedicalconcepts/C181655", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_116", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_117", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_118", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_119", + "name": "EGCLSIG", + "label": "EGCLSIG", + "mandatory": false, + "coding": [ + { + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_120", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C181655", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Electrocardiogram Analysis" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_28", + "name": "Atrioventricular Conduction ECG Assessment", + "label": "Atrioventricular Conduction ECG Assessment", + "aliases": [ + "AVCOND", + "Atrioventricular Conduction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111131", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_121", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_122", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_123", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_124", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_125", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111131", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Atrioventricular Conduction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_29", + "name": "Axis and Voltage ECG Assessment", + "label": "Axis and Voltage ECG Assessment", + "aliases": [ + "AXISVOLT", + "Axis and Voltage" + ], + "href": "/mdr/bc/biomedicalconcepts/C111132", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_126", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_127", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_128", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_129", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_130", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111132", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Axis and Voltage ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_30", + "name": "Chamber Hypertrophy or Enlargement ECG Assessment", + "label": "Chamber Hypertrophy or Enlargement ECG Assessment", + "aliases": [ + "CHYPTENL", + "Chamber Hypertrophy or Enlargement" + ], + "href": "/mdr/bc/biomedicalconcepts/C111155", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_131", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_132", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_133", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_134", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_135", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Chamber Hypertrophy or Enlargement ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_31", + "name": "ECG Technical Quality", + "label": "ECG Technical Quality", + "aliases": [ + "TECHQUAL" + ], + "href": "/mdr/bc/biomedicalconcepts/C117807", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_136", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_137", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_138", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_139", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117807", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "ECG Technical Quality" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_32", + "name": "Intraventricular and Intraatrial Conduction ECG Assessment", + "label": "Intraventricular and Intraatrial Conduction ECG Assessment", + "aliases": [ + "IVTIACD", + "Intraventricular-Intraatrial Conduction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111238", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_140", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_141", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_142", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_143", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_144", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Intraventricular and Intraatrial Conduction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_33", + "name": "Myocardial Infarction ECG Assessment", + "label": "Myocardial Infarction ECG Assessment", + "aliases": [ + "MI", + "Myocardial Infarction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111280", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_145", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_146", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_147", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_148", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + } + ], + "coding": [ + { + "code": "C111280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Myocardial Infarction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_34", + "name": "Pacemaker ECG Assessment", + "label": "Pacemaker ECG Assessment", + "aliases": [ + "PACEMAKR", + "Pacemaker" + ], + "href": "/mdr/bc/biomedicalconcepts/C111285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_149", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_150", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_151", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_152", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_153", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Pacemaker ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_35", + "name": "Rhythm Not Otherwise Specified ECG Assessment", + "label": "Rhythm Not Otherwise Specified ECG Assessment", + "aliases": [ + "RHYNOS", + "Rhythm Not Otherwise Specified" + ], + "href": "/mdr/bc/biomedicalconcepts/C111307", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_154", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_155", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_156", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_157", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_158", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111307", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Rhythm Not Otherwise Specified ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_36", + "name": "ST Segment, T wave, and U wave ECG Assessment", + "label": "ST Segment, T wave, and U wave ECG Assessment", + "aliases": [ + "STSTWUW", + "ST Segment, T wave, and U wave" + ], + "href": "/mdr/bc/biomedicalconcepts/C111363", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_159", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_160", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_161", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_162", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_163", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111363", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "ST Segment, T wave, and U wave ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_37", + "name": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "label": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "aliases": [ + "SNRARRY", + "Sinus Node Rhythms and Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111312", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_164", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_165", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_166", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_167", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_168", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111312", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Sinus Node Rhythm and Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_38", + "name": "Supraventricular Arrhythmia ECG Assessment", + "label": "Supraventricular Arrhythmia ECG Assessment", + "aliases": [ + "SPRARRY", + "Supraventricular Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111320", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_169", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_170", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_171", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_172", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_173", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111320", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_39", + "name": "Supraventricular Tachyarrhythmia ECG Assessment", + "label": "Supraventricular Tachyarrhythmia ECG Assessment", + "aliases": [ + "SPRTARRY", + "Supraventricular Tachyarrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111321", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_174", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_175", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_176", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_177", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_178", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Tachyarrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_40", + "name": "Aggregate PR Interval", + "label": "Aggregate PR Interval", + "aliases": [ + "PR Interval Aggregate", + "PQ Interval Aggregate", + "PRAG", + "PQAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117773", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_179", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_180", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_181", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_182", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_183", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_184", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_185", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117773", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate PR Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_41", + "name": "Aggregate QRS Duration", + "label": "Aggregate QRS Duration", + "aliases": [ + "QRS Aggregate Duration", + "QRSAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117779", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_186", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_187", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_188", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_189", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_190", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_191", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_192", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117779", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QRS Duration" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_42", + "name": "Aggregate QT Interval", + "label": "Aggregate QT Interval", + "aliases": [ + "QT Interval Aggregate", + "QTAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117783", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_193", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_194", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_195", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_196", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_197", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_198", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_199", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QT Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_43", + "name": "Aggregate QTCB Interval", + "label": "Aggregate QTCB Interval", + "aliases": [ + "QTCB Interval Aggregate", + "QTCBAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117784", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_200", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_201", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_202", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_203", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_204", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_205", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_206", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117784", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCB Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_44", + "name": "Aggregate QTCF Interval", + "label": "Aggregate QTCF Interval", + "aliases": [ + "QTCF Interval Aggregate", + "QTCFAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117786", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_207", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_208", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_209", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_210", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_211", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_212", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_213", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCF Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_45", + "name": "Aggregate RR Interval", + "label": "Aggregate RR Interval", + "aliases": [ + "RR Interval Aggregate", + "RRAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117791", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_214", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_215", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_216", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_217", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_218", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_219", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_220", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117791", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Aggregate RR Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_46", + "name": "Mean Heart Rate by Electrocardiogram", + "label": "Mean Heart Rate by Electrocardiogram", + "aliases": [ + "ECG Mean Heart Rate", + "EKG Mean Heart Rate", + "EGHRMN" + ], + "href": "/mdr/bc/biomedicalconcepts/C119259", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_221", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_222", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_223", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_224", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_225", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_226", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C119259", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Mean Heart Rate by Electrocardiogram" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_47", + "name": "QRS Axis", + "label": "QRS Axis", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C118165", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle" + } + ], + "codeList": "CL.798c8fb6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_230", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_231", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_232", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C118165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QRS Axis" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_48", + "name": "QTc Correction Method Unspecified, Aggregate", + "label": "QTc Correction Method Unspecified, Aggregate", + "aliases": [ + "QTCUNSAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C174285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_233", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_234", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_235", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_236", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_237", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_238", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QTc Correction Method Unspecified, Aggregate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_49", + "name": "Ventricular Arrhythmia ECG Assessment", + "label": "Ventricular Arrhythmia ECG Assessment", + "aliases": [ + "VTARRY", + "Ventricular Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111330", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_50", + "name": "Ventricular Tachyarrhythmia ECG Assessment", + "label": "Ventricular Tachyarrhythmia ECG Assessment", + "aliases": [ + "VTTARRY", + "Ventricular Tachyarrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111331", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Tachyarrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_51", + "name": "Computed Tomography", + "label": "Computed Tomography", + "aliases": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "href": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.5ae118a0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_52", + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "aliases": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "href": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_54", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "aliases": [ + "CMYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_55", + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "aliases": [ + "Concomitant Medication" + ], + "href": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_56", + "name": "Hemoglobin Measurement", + "label": "Hemoglobin Measurement", + "aliases": [ + "Hemoglobin", + "HGB" + ], + "href": "/mdr/bc/biomedicalconcepts/C64848", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_57", + "name": "Hematocrit Measurement", + "label": "Hematocrit Measurement", + "aliases": [ + "Hematocrit", + "Packed Cell Volume", + "PCV", + "Erythrocyte Volume Fraction", + "EVF" + ], + "href": "/mdr/bc/biomedicalconcepts/C64796", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64796", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hematocrit Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_58", + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "aliases": [ + "RBC", + "Red Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_59", + "name": "Erythrocyte Mean Corpuscular Hemoglobin", + "label": "Erythrocyte Mean Corpuscular Hemoglobin", + "aliases": [ + "RBC Mean Corpuscular Hemoglobin", + "MCH" + ], + "href": "/mdr/bc/biomedicalconcepts/C64797", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Hemoglobin" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_60", + "name": "Erythrocyte Mean Corpuscular Volume", + "label": "Erythrocyte Mean Corpuscular Volume", + "aliases": [ + "RBC Mean Corpuscular Volume", + "MCV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64799", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume" + } + ], + "codeList": "CL.a00fe0a9" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64799", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Volume" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_61", + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "aliases": [ + "WBC", + "White Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_62", + "name": "Segmented Neutrophil Count", + "label": "Segmented Neutrophil Count", + "aliases": [ + "Segmented Neutrophils", + "NEUTSG" + ], + "href": "/mdr/bc/biomedicalconcepts/C81997", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Segmented Neutrophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_63", + "name": "Neutrophil Band Form Count", + "label": "Neutrophil Band Form Count", + "aliases": [ + "Neutrophil Bands", + "Bands", + "NEUTB" + ], + "href": "/mdr/bc/biomedicalconcepts/C64830", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.2c53325c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64830", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Neutrophil Band Form Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_64", + "name": "Absolute Neutrophil Count", + "label": "Absolute Neutrophil Count", + "aliases": [ + "Neutrophils", + "Total Neutrophil Count", + "NEUT" + ], + "href": "/mdr/bc/biomedicalconcepts/C63321", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C63321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Neutrophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_65", + "name": "Monocyte Count", + "label": "Monocyte Count", + "aliases": [ + "Monocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C64823", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64823", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Monocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_66", + "name": "Eosinophil Count", + "label": "Eosinophil Count", + "aliases": [ + "Eosinophils" + ], + "href": "/mdr/bc/biomedicalconcepts/C64550", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64550", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Eosinophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_67", + "name": "Absolute Basophil Count", + "label": "Absolute Basophil Count", + "aliases": [ + "Basophils", + "Total Basophil Count" + ], + "href": "/mdr/bc/biomedicalconcepts/C64470", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64470", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Basophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_68", + "name": "Platelet Count", + "label": "Platelet Count", + "aliases": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_69", + "name": "Microcyte Count", + "label": "Microcyte Count", + "aliases": [ + "Microcytes", + "MICROCY" + ], + "href": "/mdr/bc/biomedicalconcepts/C64822", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64822", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Microcyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_70", + "name": "Macrocyte Count", + "label": "Macrocyte Count", + "aliases": [ + "Macrocytes", + "MACROCY" + ], + "href": "/mdr/bc/biomedicalconcepts/C64821", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64821", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Macrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_71", + "name": "Anisocyte Measurement", + "label": "Anisocyte Measurement", + "aliases": [ + "Anisocytes", + "Anisocytosis", + "ANISO" + ], + "href": "/mdr/bc/biomedicalconcepts/C74797", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anisocyte Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_72", + "name": "Poikilocyte Measurement", + "label": "Poikilocyte Measurement", + "aliases": [ + "POIKILO", + "Poikilocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C79602", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C79602", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Poikilocyte Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_73", + "name": "Polychromasia", + "label": "Polychromasia", + "aliases": [ + "POLYCHR" + ], + "href": "/mdr/bc/biomedicalconcepts/C64803", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Polychromasia" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_74", + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "aliases": [ + "ALT", + "SGPT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_75", + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "aliases": [ + "Albumin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_76", + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "aliases": [ + "Alkaline Phosphatase" + ], + "href": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_77", + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "aliases": [ + "AST", + "SGOT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_78", + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "aliases": [ + "Creatinine" + ], + "href": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_79", + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "aliases": [ + "Potassium", + "K" + ], + "href": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_80", + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "aliases": [ + "Sodium", + "NA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_81", + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "aliases": [ + "Urea Nitrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_82", + "name": "Bicarbonate Measurement", + "label": "Bicarbonate Measurement", + "aliases": [ + "Bicarbonate", + "HCO3" + ], + "href": "/mdr/bc/biomedicalconcepts/C74667", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Bicarbonate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_83", + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "aliases": [ + "Chloride", + "CL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_84", + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_85", + "name": "Gamma Glutamyl Transpeptidase Measurement", + "label": "Gamma Glutamyl Transpeptidase Measurement", + "aliases": [ + "Gamma Glutamyl Transferase", + "GGT", + "GGTP" + ], + "href": "/mdr/bc/biomedicalconcepts/C64847", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64847", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Gamma Glutamyl Transpeptidase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_86", + "name": "Urate Measurement", + "label": "Urate Measurement", + "aliases": [ + "Urate", + "Uric Acid" + ], + "href": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_87", + "name": "Phosphate Measurement", + "label": "Phosphate Measurement", + "aliases": [ + "Phosphorus", + "Phosphate" + ], + "href": "/mdr/bc/biomedicalconcepts/C64857", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_471", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_472", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_473", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64857", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Phosphate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_88", + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "aliases": [ + "Calcium", + "CA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_480", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_481", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_482", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_483", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_484", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_89", + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_495", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_496", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_497", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_498", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_499", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_500", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_90", + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_506", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_507", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_508", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_509", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_510", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_91", + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "aliases": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_516", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_517", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_518", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_519", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_520", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_92", + "name": "Triiodothyronine Uptake Measurement", + "label": "Triiodothyronine Uptake Measurement", + "aliases": [ + "T3UP", + "T3U", + "Triiodothyronine Resin Uptake" + ], + "href": "/mdr/bc/biomedicalconcepts/C74748", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_526", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_527", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_528", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_529", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_530", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74748", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Uptake Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_93", + "name": "Triiodothyronine Measurement", + "label": "Triiodothyronine Measurement", + "aliases": [ + "T3", + "Total T3" + ], + "href": "/mdr/bc/biomedicalconcepts/C74747", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_535", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_536", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_537", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_538", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_539", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74747", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_94", + "name": "Free Thyroxine Measurement", + "label": "Free Thyroxine Measurement", + "aliases": [ + "Free T4", + "T4FR" + ], + "href": "/mdr/bc/biomedicalconcepts/C74786", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_545", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_546", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_547", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_548", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_549", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_95", + "name": "Free Thyroxine Index", + "label": "Free Thyroxine Index", + "aliases": [ + "T4FRIDX" + ], + "href": "/mdr/bc/biomedicalconcepts/C170598", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_555", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_556", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_557", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_558", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C170598", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Index" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_96", + "name": "Thyrotropin Measurement", + "label": "Thyrotropin Measurement", + "aliases": [ + "TSH", + "Thyrotropin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64813", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_564", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_565", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_566", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_567", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_568", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64813", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Thyrotropin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_97", + "name": "Folic Acid Measurement", + "label": "Folic Acid Measurement", + "aliases": [ + "Folate", + "Folic Acid", + "Vitamin B9", + "VITB9" + ], + "href": "/mdr/bc/biomedicalconcepts/C74676", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_574", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_575", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_576", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_577", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_578", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Folic Acid Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_98", + "name": "Vitamin B12 Measurement", + "label": "Vitamin B12 Measurement", + "aliases": [ + "Cobalamin", + "Vitamin B12", + "VITB12" + ], + "href": "/mdr/bc/biomedicalconcepts/C64817", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_584", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_585", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_586", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_587", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_588", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Vitamin B12 Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_99", + "name": "Treponema pallidum Antibody Measurement", + "label": "Treponema pallidum Antibody Measurement", + "aliases": [ + "TPLAB", + "Treponema pallidum Antibody", + "Syphilis Antibody" + ], + "href": "/mdr/bc/biomedicalconcepts/C132388", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_592", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_593", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_594", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.bbc50609" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_595", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_596", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C132388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum Antibody Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_100", + "name": "Treponema pallidum DNA Measurement", + "label": "Treponema pallidum DNA Measurement", + "aliases": [ + "TPADNA", + "Syphilis DNA" + ], + "href": "/mdr/bc/biomedicalconcepts/C198341", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_606", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_607", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_608", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_609", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ], + "codeList": "CL.bdb73f2b" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_610", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C198341", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum DNA Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_101", + "name": "Color Assessment", + "label": "Color Assessment", + "aliases": [ + "COLOR", + "Color" + ], + "href": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_616", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_617", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_618", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_102", + "name": "Specific Gravity", + "label": "Specific Gravity", + "aliases": [ + "SPGRAV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_629", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_630", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_631", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_632", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_103", + "name": "Total Protein Measurement", + "label": null, + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_633", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_634", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_635", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_636", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_637", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_104", + "name": "Glucose Measurement", + "label": null, + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_643", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_644", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_645", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_646", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_647", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_105", + "name": "Ketone Measurement", + "label": "Ketone Measurement", + "aliases": [ + "Ketones" + ], + "href": "/mdr/bc/biomedicalconcepts/C64854", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_652", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_653", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_654", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_655", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_656", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64854", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Ketone Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_106", + "name": "Total Bilirubin Measurement", + "label": null, + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_657", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_658", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_659", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_660", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_661", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_107", + "name": "Urobilinogen Measurement", + "label": "Urobilinogen Measurement", + "aliases": [ + "Urobilinogen", + "UROBIL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64816", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_667", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_668", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_669", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_670", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_671", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64816", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urobilinogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_108", + "name": "Occult Blood Measurement", + "label": "Occult Blood Measurement", + "aliases": [ + "Occult Blood", + "OCCBLD" + ], + "href": "/mdr/bc/biomedicalconcepts/C74686", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_676", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_677", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5fc938fc" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_678", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_679", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74686", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occult Blood Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_109", + "name": "Nitrite Measurement", + "label": "Nitrite Measurement", + "aliases": [ + "NITRITE" + ], + "href": "/mdr/bc/biomedicalconcepts/C64810", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_684", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_685", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_686", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_687", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_688", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64810", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Nitrite Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_110", + "name": "Hemoglobin A1C Measurement", + "label": "Hemoglobin A1C Measurement", + "aliases": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C" + ], + "href": "/mdr/bc/biomedicalconcepts/C64849", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_703", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_704", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_705", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_706", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin A1C Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_111", + "name": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "label": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "aliases": [ + "Hemoglobin A1C/Hemoglobin", + "HBA1CHGB" + ], + "href": "/mdr/bc/biomedicalconcepts/C111207", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_713", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_714", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_715", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_716", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Hemoglobin A1C to Hemoglobin Ratio Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_112", + "name": "Exposure as Collected Domain", + "label": "Exposure as Collected Domain", + "aliases": [ + "EC", + "Exposure as Collected" + ], + "href": "/mdr/bc/biomedicalconcepts/C117466", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_720", + "name": "ECTRT", + "label": "ECTRT", + "mandatory": true, + "coding": [ + { + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_721", + "name": "ECREFID", + "label": "ECREFID", + "mandatory": false, + "coding": [ + { + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_722", + "name": "ECDOSE", + "label": "ECDOSE", + "mandatory": false, + "coding": [ + { + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_723", + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_724", + "name": "ECDOSU", + "label": "ECDOSU", + "mandatory": false, + "coding": [ + { + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_725", + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_726", + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_727", + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "mandatory": false, + "coding": [ + { + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_728", + "name": "ECROUTE", + "label": "ECROUTE", + "mandatory": false, + "coding": [ + { + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_729", + "name": "ECLOC", + "label": "ECLOC", + "mandatory": false, + "coding": [ + { + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_730", + "name": "ECLAT", + "label": "ECLAT", + "mandatory": false, + "coding": [ + { + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_731", + "name": "ECDIR", + "label": "ECDIR", + "mandatory": false, + "coding": [ + { + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_732", + "name": "ECSTDTC", + "label": "ECSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_733", + "name": "ECENDTC", + "label": "ECENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment" + } + ] + } + ], + "coding": [ + { + "code": "C117466", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-10-03", + "decode": "Exposure as Collected Domain" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_113", + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_734", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_735", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_736", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + } + ], + "coding": [ + { + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_114", + "name": "TTS Acceptability Survey - Patch Acceptability", + "label": "TTS Acceptability Survey - Patch Acceptability", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT4", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_740", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_741", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_742", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT4", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Acceptability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_115", + "name": "TTS Acceptability Survey - Patch Appearance", + "label": "TTS Acceptability Survey - Patch Appearance", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT1", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_748", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_749", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_750", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Appearance" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_116", + "name": "TTS Acceptability Survey - Patch Durability", + "label": "TTS Acceptability Survey - Patch Durability", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT3", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_777", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_778", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_779", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Durability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_117", + "name": "TTS Acceptability Survey - Patch Size", + "label": "TTS Acceptability Survey - Patch Size", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT2", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_780", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_781", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_782", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Size" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_134", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_783", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_784", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_135", + "name": "Solicited Adverse Event", + "label": "Solicited Adverse Event", + "aliases": [ + "Adverse Event" + ], + "href": "/mdr/bc/biomedicalconcepts/C179175", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_785", + "name": "AETERM", + "label": "AETERM", + "mandatory": true, + "coding": [ + { + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_786", + "name": "AEDECOD", + "label": "AEDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_787", + "name": "AELOC", + "label": "AELOC", + "mandatory": false, + "coding": [ + { + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_788", + "name": "AESEV", + "label": "AESEV", + "mandatory": false, + "coding": [ + { + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_789", + "name": "AESER", + "label": "AESER", + "mandatory": false, + "coding": [ + { + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_790", + "name": "AEACN", + "label": "AEACN", + "mandatory": false, + "coding": [ + { + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_791", + "name": "AEACNOTH", + "label": "AEACNOTH", + "mandatory": false, + "coding": [ + { + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_792", + "name": "AEREL", + "label": "AEREL", + "mandatory": false, + "coding": [ + { + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_793", + "name": "AERELNST", + "label": "AERELNST", + "mandatory": false, + "coding": [ + { + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_794", + "name": "AEPATT", + "label": "AEPATT", + "mandatory": false, + "coding": [ + { + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_795", + "name": "AEOUT", + "label": "AEOUT", + "mandatory": false, + "coding": [ + { + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_796", + "name": "AESCAN", + "label": "AESCAN", + "mandatory": false, + "coding": [ + { + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_797", + "name": "AESCONG", + "label": "AESCONG", + "mandatory": false, + "coding": [ + { + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_798", + "name": "AESDISAB", + "label": "AESDISAB", + "mandatory": false, + "coding": [ + { + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_799", + "name": "AESDTH", + "label": "AESDTH", + "mandatory": false, + "coding": [ + { + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_800", + "name": "AESHOSP", + "label": "AESHOSP", + "mandatory": false, + "coding": [ + { + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_801", + "name": "AESLIFE", + "label": "AESLIFE", + "mandatory": false, + "coding": [ + { + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_802", + "name": "AESOD", + "label": "AESOD", + "mandatory": false, + "coding": [ + { + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_803", + "name": "AESMIE", + "label": "AESMIE", + "mandatory": false, + "coding": [ + { + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_804", + "name": "AECONTRT", + "label": "AECONTRT", + "mandatory": false, + "coding": [ + { + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_805", + "name": "AETOXGR", + "label": "AETOXGR", + "mandatory": false, + "coding": [ + { + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_806", + "name": "AESTDTC", + "label": "AESTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_807", + "name": "AEENDTC", + "label": "AEENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_808", + "name": "AEENRF", + "label": "AEENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_809", + "name": "AEENRTPT", + "label": "AEENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_810", + "name": "AEENTPT", + "label": "AEENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Adverse Event" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_136", + "name": "Complete", + "label": "Complete", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C25250", + "properties": [], + "coding": [ + { + "code": "C25250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Complete [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_137", + "name": "Failure To Meet Continuation Criteria", + "label": "Failure To Meet Continuation Criteria", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C139236", + "properties": [], + "coding": [ + { + "code": "C139236", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Failure To Meet Continuation Criteria [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_138", + "name": "Dead", + "label": "Dead", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C28554", + "properties": [], + "coding": [ + { + "code": "C28554", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Dead [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_139", + "name": "Lack of Efficacy", + "label": "Lack of Efficacy", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48226", + "properties": [], + "coding": [ + { + "code": "C48226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lack of Efficacy [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_140", + "name": "Lost To Follow-Up", + "label": "Lost To Follow-Up", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48227", + "properties": [], + "coding": [ + { + "code": "C48227", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lost To Follow-Up [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_141", + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_142", + "name": "Physician Decision", + "label": "Physician Decision", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48250", + "properties": [], + "coding": [ + { + "code": "C48250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Physician Decision [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_143", + "name": "Pregnant Subject", + "label": "Pregnant Subject", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C191656", + "properties": [], + "coding": [ + { + "code": "C191656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Pregnant Subject [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_144", + "name": "Progressive Disease", + "label": "Progressive Disease", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C35571", + "properties": [], + "coding": [ + { + "code": "C35571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Progressive Disease [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_145", + "name": "Protocol Deviation", + "label": "Protocol Deviation", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C50996", + "properties": [], + "coding": [ + { + "code": "C50996", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Protocol Deviation" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_146", + "name": "Study Site Transfer", + "label": "Study Site Transfer", + "aliases": [ + "Site Transfer", + "Study Subject Site Transfer" + ], + "href": "/mdr/bc/biomedicalconcepts/C186208", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_811", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.d8fccc32" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_812", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_813", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Site Transfer" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_147", + "name": "Study Terminated By Sponsor", + "label": "Study Terminated By Sponsor", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49632", + "properties": [], + "coding": [ + { + "code": "C49632", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Terminated By Sponsor" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_148", + "name": "Subject Removed at Sponsor Request", + "label": "Subject Removed at Sponsor Request", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C161410", + "properties": [], + "coding": [ + { + "code": "C161410", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Subject Removed at Sponsor Request [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_149", + "name": "Trial Screen Failure", + "label": "Trial Screen Failure", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49628", + "properties": [], + "coding": [ + { + "code": "C49628", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Screen Failure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_150", + "name": "Trial Site Terminated by Sponsor", + "label": "Trial Site Terminated by Sponsor", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C106576", + "properties": [], + "coding": [ + { + "code": "C106576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Site Terminated by Sponsor" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_151", + "name": "Withdrawal by Subject", + "label": "Withdrawal by Subject", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49634", + "properties": [], + "coding": [ + { + "code": "C49634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal by Subject" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_152", + "name": "Withdrawal of Consent From Protocol-Specified Activity", + "label": "Withdrawal of Consent From Protocol-Specified Activity", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C170610", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_823", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.a3e2e2db" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_824", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_825", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal of Consent From Protocol-Specified Activity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_153", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_832", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_833", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_834", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_835", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_836", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_837", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_154", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_862", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_863", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_864", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_865", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_866", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_867", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_155", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_880", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_881", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_882", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_883", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_884", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_885", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_156", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_886", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_887", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_888", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_889", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_890", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_891", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_157", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_892", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_893", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_894", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_895", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_896", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_897", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_158", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_898", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_899", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_900", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_901", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_902", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_903", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_159", + "name": "Isometric Muscle Strength", + "label": "Isometric Muscle Strength", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C138967", + "properties": [], + "coding": [ + { + "code": "C138967", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Isometric Muscle Strength" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_160", + "name": "Skeletal Muscle Mass Measurement", + "label": "Skeletal Muscle Mass Measurement", + "aliases": [ + "SMMASS", + "Skeletal Muscle Mass" + ], + "href": "/mdr/bc/biomedicalconcepts/C178017", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_920", + "name": "MKORRES", + "label": "MKORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_921", + "name": "MKORRESU", + "label": "MKORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_922", + "name": "MKLOC", + "label": "MKLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_923", + "name": "MKLAT", + "label": "MKLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_924", + "name": "MKMETHOD", + "label": "MKMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_925", + "name": "MKDTC", + "label": "MKDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C178017", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Skeletal Muscle Mass Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_161", + "name": "Muscle Endurance Measurement", + "label": "Muscle Endurance Measurement", + "aliases": [ + "ENDURM", + "Muscle Endurance" + ], + "href": "/mdr/bc/biomedicalconcepts/C181501", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_933", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_934", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_935", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_936", + "name": "Laterality", + "label": "Laterality", + "mandatory": true, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_937", + "name": "Test Method", + "label": "Test Method", + "mandatory": true, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_938", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C181501", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Muscle Endurance Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_162", + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "aliases": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "href": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_949", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_950", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_951", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_952", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_953", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_954", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_164", + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_955", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_956", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_957", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + } + ], + "coding": [ + { + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_165", + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "aliases": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "href": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_974", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_975", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_976", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_977", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_978", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_979", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_980", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_166", + "name": "Computed Tomography", + "label": "Computed Tomography", + "aliases": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "href": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_997", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_998", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_999", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1000", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1001", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1002", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1003", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_168", + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "aliases": [ + "Vital Signs", + "VS" + ], + "href": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "coding": [ + { + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_169", + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "aliases": [ + "Vital Signs", + "VS" + ], + "href": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "coding": [ + { + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_170", + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_171", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1012", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1013", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_172", + "name": "CDISC ADAS-Cog - Word Recall Average Score", + "label": "CDISC ADAS-Cog - Word Recall Average Score", + "aliases": [ + "ADCRL", + "Word Recall", + "CDISC ADAS-Cog - Word Recall Average Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100177", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1022", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1023", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1024", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1025", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1026", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1027", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1028", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1029", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100177", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recall Average Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_173", + "name": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "label": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "aliases": [ + "ADCOF", + "Naming Objects and Fingers", + "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100191", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1030", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1031", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1032", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1033", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1034", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1035", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1036", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1037", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100191", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_174", + "name": "CDISC ADAS-Cog - Commands Summary Score", + "label": "CDISC ADAS-Cog - Commands Summary Score", + "aliases": [ + "ADCCMD", + "Commands", + "CDISC ADAS-Cog - Commands Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1046", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1047", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1048", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1049", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1050", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1051", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1052", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1053", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Commands Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_175", + "name": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "label": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "aliases": [ + "ADCDRL", + "Delayed Word Recall", + "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100215", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1062", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1063", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1064", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1065", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1066", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1067", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1068", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1069", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_176", + "name": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "label": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "aliases": [ + "ADCCP", + "Constructional Praxis", + "CDISC ADAS-Cog - Constructional Praxis Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100226", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1078", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1079", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1080", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1081", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1082", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1083", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1084", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1085", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + } + ], + "coding": [ + { + "code": "C100226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Constructional Praxis Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_177", + "name": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "label": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "aliases": [ + "ADCIP", + "Ideational Praxis", + "CDISC ADAS-Cog - Ideational Praxis Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100232", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1094", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1095", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1096", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1097", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1098", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1099", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1100", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1101", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + } + ], + "coding": [ + { + "code": "C100232", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Ideational Praxis Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_178", + "name": "CDISC ADAS-Cog - Orientation Summary Score", + "label": "CDISC ADAS-Cog - Orientation Summary Score", + "aliases": [ + "ADCOR", + "Orientation", + "CDISC ADAS-Cog - Orientation Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100238", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1110", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1111", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1112", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1113", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1114", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1115", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1116", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1117", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + } + ], + "coding": [ + { + "code": "C100238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Orientation Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_179", + "name": "CDISC ADAS-Cog - Word Recognition Summary Score", + "label": "CDISC ADAS-Cog - Word Recognition Summary Score", + "aliases": [ + "ADCRG", + "Word Recognition", + "CDISC ADAS-Cog - Word Recognition Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100247", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1126", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1127", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1128", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1129", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1130", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1131", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1132", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1133", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + } + ], + "coding": [ + { + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_180", + "name": "CDISC ADAS-Cog - Remembering Test Instructions", + "label": "CDISC ADAS-Cog - Remembering Test Instructions", + "aliases": [ + "ADCRI", + "Remembering Test Instructions", + "CDISC ADAS-Cog - Remembering Test Instructions" + ], + "href": "/mdr/bc/biomedicalconcepts/C100275", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1142", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1143", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1144", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1145", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1146", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1147", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1148", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1149", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + } + ], + "coding": [ + { + "code": "C100275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Remembering Test Instructions" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_181", + "name": "CDISC ADAS-Cog - Spoken Language Ability", + "label": "CDISC ADAS-Cog - Spoken Language Ability", + "aliases": [ + "ADCSL", + "Spoken Language Ability", + "CDISC ADAS-Cog - Spoken Language Ability" + ], + "href": "/mdr/bc/biomedicalconcepts/C100276", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1167", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1168", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1169", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1170", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1171", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1172", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1173", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1174", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Spoken Language Ability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_182", + "name": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "label": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "aliases": [ + "ADCDIF", + "Word Finding Difficulty in Spont Speech", + "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + ], + "href": "/mdr/bc/biomedicalconcepts/C100277", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1181", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1182", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1183", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1184", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1185", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1186", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1187", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1188", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + } + ], + "coding": [ + { + "code": "C100277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_183", + "name": "CDISC ADAS-Cog - Comprehension", + "label": "CDISC ADAS-Cog - Comprehension", + "aliases": [ + "ADCCMP", + "Comprehension", + "CDISC ADAS-Cog - Comprehension" + ], + "href": "/mdr/bc/biomedicalconcepts/C100278", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1189", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1190", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1191", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1192", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1193", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1194", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1195", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1196", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100278", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Comprehension" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_184", + "name": "CDISC ADAS-Cog - Concentration/Distractibility", + "label": "CDISC ADAS-Cog - Concentration/Distractibility", + "aliases": [ + "ADCCON", + "Concentration/Distractibility", + "CDISC ADAS-Cog - Concentration/Distractibility" + ], + "href": "/mdr/bc/biomedicalconcepts/C100279", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1197", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1198", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1199", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1200", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1201", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1202", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1203", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1204", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + } + ], + "coding": [ + { + "code": "C100279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Concentration/Distractibility" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_185", + "name": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "label": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "aliases": [ + "ADCNC", + "Number Cancellation", + "CDISC ADAS-Cog - Number Cancellation Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100280", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1205", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1206", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1207", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1208", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1209", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1210", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1211", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1212", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Number Cancellation Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_186", + "name": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "label": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "aliases": [ + "ADCMZ01", + "Executive Function Maze: Errors", + "CDISC ADAS-Cog - Executive Function Maze: Errors" + ], + "href": "/mdr/bc/biomedicalconcepts/C100285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1213", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1214", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1215", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1216", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1217", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1218", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1219", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1220", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + } + ], + "coding": [ + { + "code": "C100285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Errors" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_187", + "name": "CDISC ADAS-Cog - Executive Function Maze: Time", + "label": "CDISC ADAS-Cog - Executive Function Maze: Time", + "aliases": [ + "ADCMZ02", + "Executive Function Maze: Time", + "CDISC ADAS-Cog - Executive Function Maze: Time" + ], + "href": "/mdr/bc/biomedicalconcepts/C100286", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1221", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1222", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1223", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1224", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1225", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1226", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1227", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1228", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1229", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100286", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_163", + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "aliases": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "href": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1230", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1231", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1232", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1233", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1234", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1235", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator" + } + ] + } + ], + "conceptProperties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_2", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_3", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_4", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_5", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_6", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_7", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_8", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_9", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_10", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_11", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_12", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_13", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_14", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_15", + "name": "RACE", + "label": "RACE", + "mandatory": false, + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_16", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_17", + "name": "ETHNIC", + "label": "ETHNIC", + "mandatory": false, + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_18", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_19", + "name": "AGE", + "label": "AGE", + "mandatory": false, + "coding": [ + { + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_20", + "name": "AGEU", + "label": "AGEU", + "mandatory": false, + "coding": [ + { + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_21", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_22", + "name": "BRTHDTC", + "label": "BRTHDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_23", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_24", + "name": "SEX", + "label": "SEX", + "mandatory": false, + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_25", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_26", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_27", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_28", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_29", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_30", + "name": "MHTERM", + "label": "MHTERM", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_31", + "name": "MHDECOD", + "label": "MHDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_32", + "name": "MHSTDTC", + "label": "MHSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_33", + "name": "MHENDTC", + "label": "MHENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_34", + "name": "MHENRF", + "label": "MHENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_35", + "name": "MHENRTPT", + "label": "MHENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_36", + "name": "MHENTPT", + "label": "MHENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_37", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_38", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_39", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_40", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_41", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_42", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_43", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_44", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_45", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_46", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_47", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_48", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_49", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_50", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_51", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_52", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_53", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_54", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_55", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_56", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_57", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_58", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_59", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_60", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_61", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_62", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_63", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_64", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_65", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_66", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_67", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_68", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_69", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_70", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_71", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_72", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_73", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_74", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_75", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_76", + "name": "SUDUR", + "label": "SUDUR", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_77", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_78", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_79", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_80", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_81", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_82", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_83", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_84", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.30a86bdd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_85", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_86", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_87", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_88", + "name": "PRLAT", + "label": "PRLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_89", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_90", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_91", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_92", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_93", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_94", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_95", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_96", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_97", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_98", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_99", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_100", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_101", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_102", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_103", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_104", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_105", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_106", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_107", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_108", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_109", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_110", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_111", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.da016f8d" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_112", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_113", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_114", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_115", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_116", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_117", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_118", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_119", + "name": "EGCLSIG", + "label": "EGCLSIG", + "mandatory": false, + "coding": [ + { + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_120", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_121", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_122", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_123", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_124", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_125", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_126", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_127", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_128", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_129", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_130", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_131", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_132", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_133", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_134", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_135", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_136", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_137", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_138", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_139", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_140", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_141", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_142", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_143", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_144", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_145", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_146", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_147", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_148", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_149", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_150", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_151", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_152", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_153", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_154", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_155", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_156", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_157", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_158", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_159", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_160", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_161", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_162", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_163", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_164", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_165", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_166", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_167", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_168", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_169", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_170", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_171", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_172", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_173", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_174", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_175", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_176", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_177", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_178", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_179", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_180", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_181", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_182", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_183", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_184", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_185", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_186", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_187", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_188", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_189", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_190", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_191", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_192", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_193", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_194", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_195", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_196", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_197", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_198", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_199", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_200", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_201", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_202", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_203", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_204", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_205", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_206", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_207", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_208", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_209", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_210", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_211", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_212", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_213", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_214", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_215", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_216", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_217", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_218", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_219", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_220", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_221", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_222", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_223", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_224", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_225", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_226", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle" + } + ], + "codeList": "CL.798c8fb6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_230", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_231", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_232", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_233", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_234", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_235", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_236", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_237", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_238", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.5ae118a0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume" + } + ], + "codeList": "CL.a00fe0a9" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.2c53325c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_471", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_472", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_473", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_480", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_481", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_482", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_483", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_484", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_495", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_496", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_497", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_498", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_499", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_500", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_506", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_507", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_508", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_509", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_510", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_516", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_517", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_518", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_519", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_520", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_526", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_527", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_528", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_529", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_530", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_535", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_536", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_537", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_538", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_539", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_545", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_546", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_547", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_548", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_549", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_555", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_556", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_557", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_558", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_564", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_565", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_566", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_567", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_568", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_574", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_575", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_576", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_577", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_578", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_584", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_585", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_586", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_587", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_588", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_592", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_593", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_594", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.bbc50609" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_595", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_596", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_606", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_607", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_608", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_609", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ], + "codeList": "CL.bdb73f2b" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_610", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_616", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_617", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_618", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_629", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_630", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_631", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_632", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_633", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_634", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_635", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_636", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_637", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_643", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_644", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_645", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_646", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_647", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_652", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_653", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_654", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_655", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_656", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_657", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_658", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_659", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_660", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_661", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_667", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_668", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_669", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_670", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_671", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_676", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_677", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5fc938fc" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_678", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_679", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_684", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_685", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_686", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_687", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_688", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_703", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_704", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_705", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_706", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_713", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_714", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_715", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_716", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_720", + "name": "ECTRT", + "label": "ECTRT", + "mandatory": true, + "coding": [ + { + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_721", + "name": "ECREFID", + "label": "ECREFID", + "mandatory": false, + "coding": [ + { + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_722", + "name": "ECDOSE", + "label": "ECDOSE", + "mandatory": false, + "coding": [ + { + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_723", + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_724", + "name": "ECDOSU", + "label": "ECDOSU", + "mandatory": false, + "coding": [ + { + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_725", + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_726", + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_727", + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "mandatory": false, + "coding": [ + { + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_728", + "name": "ECROUTE", + "label": "ECROUTE", + "mandatory": false, + "coding": [ + { + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_729", + "name": "ECLOC", + "label": "ECLOC", + "mandatory": false, + "coding": [ + { + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_730", + "name": "ECLAT", + "label": "ECLAT", + "mandatory": false, + "coding": [ + { + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_731", + "name": "ECDIR", + "label": "ECDIR", + "mandatory": false, + "coding": [ + { + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_732", + "name": "ECSTDTC", + "label": "ECSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_733", + "name": "ECENDTC", + "label": "ECENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_734", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_735", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_736", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_740", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_741", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_742", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_748", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_749", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_750", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_777", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_778", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_779", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_780", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_781", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_782", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_783", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_784", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_785", + "name": "AETERM", + "label": "AETERM", + "mandatory": true, + "coding": [ + { + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_786", + "name": "AEDECOD", + "label": "AEDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_787", + "name": "AELOC", + "label": "AELOC", + "mandatory": false, + "coding": [ + { + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_788", + "name": "AESEV", + "label": "AESEV", + "mandatory": false, + "coding": [ + { + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_789", + "name": "AESER", + "label": "AESER", + "mandatory": false, + "coding": [ + { + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_790", + "name": "AEACN", + "label": "AEACN", + "mandatory": false, + "coding": [ + { + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_791", + "name": "AEACNOTH", + "label": "AEACNOTH", + "mandatory": false, + "coding": [ + { + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_792", + "name": "AEREL", + "label": "AEREL", + "mandatory": false, + "coding": [ + { + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_793", + "name": "AERELNST", + "label": "AERELNST", + "mandatory": false, + "coding": [ + { + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_794", + "name": "AEPATT", + "label": "AEPATT", + "mandatory": false, + "coding": [ + { + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_795", + "name": "AEOUT", + "label": "AEOUT", + "mandatory": false, + "coding": [ + { + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_796", + "name": "AESCAN", + "label": "AESCAN", + "mandatory": false, + "coding": [ + { + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_797", + "name": "AESCONG", + "label": "AESCONG", + "mandatory": false, + "coding": [ + { + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_798", + "name": "AESDISAB", + "label": "AESDISAB", + "mandatory": false, + "coding": [ + { + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_799", + "name": "AESDTH", + "label": "AESDTH", + "mandatory": false, + "coding": [ + { + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_800", + "name": "AESHOSP", + "label": "AESHOSP", + "mandatory": false, + "coding": [ + { + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_801", + "name": "AESLIFE", + "label": "AESLIFE", + "mandatory": false, + "coding": [ + { + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_802", + "name": "AESOD", + "label": "AESOD", + "mandatory": false, + "coding": [ + { + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_803", + "name": "AESMIE", + "label": "AESMIE", + "mandatory": false, + "coding": [ + { + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_804", + "name": "AECONTRT", + "label": "AECONTRT", + "mandatory": false, + "coding": [ + { + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_805", + "name": "AETOXGR", + "label": "AETOXGR", + "mandatory": false, + "coding": [ + { + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_806", + "name": "AESTDTC", + "label": "AESTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_807", + "name": "AEENDTC", + "label": "AEENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_808", + "name": "AEENRF", + "label": "AEENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_809", + "name": "AEENRTPT", + "label": "AEENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_810", + "name": "AEENTPT", + "label": "AEENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_811", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.d8fccc32" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_812", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_813", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_823", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.a3e2e2db" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_824", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_825", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_832", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_833", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_834", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_835", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_836", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_837", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_862", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_863", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_864", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_865", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_866", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_867", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_880", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_881", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_882", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_883", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_884", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_885", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_886", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_887", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_888", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_889", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_890", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_891", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_892", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_893", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_894", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_895", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_896", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_897", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_898", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_899", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_900", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_901", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_902", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_903", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_920", + "name": "MKORRES", + "label": "MKORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_921", + "name": "MKORRESU", + "label": "MKORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_922", + "name": "MKLOC", + "label": "MKLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_923", + "name": "MKLAT", + "label": "MKLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_924", + "name": "MKMETHOD", + "label": "MKMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_925", + "name": "MKDTC", + "label": "MKDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_933", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_934", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_935", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_936", + "name": "Laterality", + "label": "Laterality", + "mandatory": true, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_937", + "name": "Test Method", + "label": "Test Method", + "mandatory": true, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_938", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_949", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_950", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_951", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_952", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_953", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_954", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_955", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_956", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_957", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_974", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_975", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_976", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_977", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_978", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_979", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_980", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_997", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_998", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_999", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1000", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1001", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1002", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1003", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1012", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1013", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1022", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1023", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1024", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1025", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1026", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1027", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1028", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1029", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1030", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1031", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1032", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1033", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1034", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1035", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1036", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1037", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1046", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1047", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1048", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1049", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1050", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1051", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1052", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1053", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1062", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1063", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1064", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1065", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1066", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1067", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1068", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1069", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1078", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1079", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1080", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1081", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1082", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1083", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1084", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1085", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1094", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1095", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1096", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1097", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1098", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1099", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1100", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1101", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1110", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1111", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1112", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1113", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1114", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1115", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1116", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1117", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1126", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1127", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1128", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1129", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1130", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1131", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1132", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1133", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1142", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1143", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1144", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1145", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1146", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1147", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1148", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1149", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1167", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1168", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1169", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1170", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1171", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1172", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1173", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1174", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1181", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1182", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1183", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1184", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1185", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1186", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1187", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1188", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1189", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1190", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1191", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1192", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1193", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1194", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1195", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1196", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1197", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1198", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1199", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1200", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1201", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1202", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1203", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1204", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1205", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1206", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1207", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1208", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1209", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1210", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1211", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1212", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1213", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1214", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1215", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1216", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1217", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1218", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1219", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1220", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1221", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1222", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1223", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1224", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1225", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1226", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1227", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1228", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1229", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1230", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1231", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1232", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1233", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1234", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1235", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ] +} diff --git a/output/json/NCT12345678-define-latest.json b/output/json/NCT12345678-define-latest.json new file mode 100644 index 0000000..ef4daa9 --- /dev/null +++ b/output/json/NCT12345678-define-latest.json @@ -0,0 +1,33435 @@ +{ + "OID": "MDV.LZZT - Pilot.Version1.Design1", + "name": "MDV LZZT - Pilot", + "description": "Data Definitions for LZZT - Pilot", + "fileOID": "ODM.DEFINE-JSON.LZZT - Pilot.Version1.Design1", + "creationDateTime": "2026-07-16T11:33:00.031383+00:00", + "odmVersion": "1.3.2", + "fileType": "Snapshot", + "originator": "Define-JSON Processor", + "context": "Other", + "defineVersion": "2.1.0", + "studyOID": "ODM.LZZT - Pilot.Version1.Design1", + "studyName": "LZZT - Pilot", + "studyDescription": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "protocolName": "LZZT - Pilot", + "itemGroups": [ + { + "OID": "IG.DS", + "name": "DS", + "description": "Disposition", + "domain": "DS", + "purpose": "Tabulation", + "structure": "One record per disposition status or protocol milestone per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "DSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.DS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSSEQ", + "mandatory": true, + "name": "DSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.DS.DSTERM", + "mandatory": true, + "name": "DSTERM", + "description": "Reported Term for the Disposition Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_2", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSDECOD", + "mandatory": true, + "name": "DSDECOD", + "description": "Standardized Disposition Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_1", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NCOMPLT" + }, + { + "OID": "IT.DS.DSCAT", + "mandatory": false, + "name": "DSCAT", + "description": "Category for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSCAT" + }, + { + "OID": "IT.DS.DSSCAT", + "mandatory": false, + "name": "DSSCAT", + "description": "Subcategory for Disposition Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.DSSCAT" + }, + { + "OID": "IT.DS.DSSTDTC", + "mandatory": false, + "name": "DSSTDTC", + "description": "Start Date/Time of Disposition Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_3", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.DS.DSSTDY", + "mandatory": false, + "name": "DSSTDY", + "description": "Study Day of Start of Disposition Event", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_1" + }, + { + "OID": "IG.IE", + "name": "IE", + "description": "Inclusion/Exclusion Criteria Not Met", + "domain": "IE", + "purpose": "Tabulation", + "structure": "One record per inclusion/exclusion criterion not met per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "IESEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.IE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IESEQ", + "mandatory": true, + "name": "IESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IETESTCD", + "mandatory": true, + "name": "IETESTCD", + "description": "Inclusion/Exclusion Criterion Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IETEST", + "mandatory": true, + "name": "IETEST", + "description": "Inclusion/Exclusion Criterion", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.IE.IECAT", + "mandatory": true, + "name": "IECAT", + "description": "Inclusion/Exclusion Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.IECAT" + }, + { + "OID": "IT.IE.IEORRES", + "mandatory": true, + "name": "IEORRES", + "description": "I/E Criterion Original Result", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_5", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.IE.IESTRESC", + "mandatory": true, + "name": "IESTRESC", + "description": "I/E Criterion Result in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.IE.IEDTC", + "mandatory": false, + "name": "IEDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_6", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_2" + }, + { + "OID": "IG.SC", + "name": "SC", + "description": "Subject Characteristics", + "domain": "SC", + "purpose": "Tabulation", + "structure": "One record per characteristic per visit per subject.", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SCSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.SC.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCSEQ", + "mandatory": true, + "name": "SCSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCTESTCD", + "mandatory": true, + "name": "SCTESTCD", + "description": "Subject Characteristic Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.SCTESTCD" + }, + { + "OID": "IT.SC.SCTEST", + "mandatory": true, + "name": "SCTEST", + "description": "Subject Characteristic", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.SCTEST" + }, + { + "OID": "IT.SC.SCCAT", + "mandatory": false, + "name": "SCCAT", + "description": "Category for Subject Characteristic", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCORRES", + "mandatory": false, + "name": "SCORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_26", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SC.SCSTRESC", + "mandatory": false, + "name": "SCSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCSTRESN", + "mandatory": false, + "name": "SCSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SC.SCDTC", + "mandatory": false, + "name": "SCDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_27", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_11" + }, + { + "OID": "IG.MH", + "name": "MH", + "description": "Medical History", + "domain": "MH", + "purpose": "Tabulation", + "structure": "One record per medical history event per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MHSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.MH.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHSEQ", + "mandatory": true, + "name": "MHSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHTERM", + "mandatory": true, + "name": "MHTERM", + "description": "Reported Term for the Medical History", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_30", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHDECOD", + "mandatory": false, + "name": "MHDECOD", + "description": "Dictionary-Derived Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_31", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHCAT", + "mandatory": false, + "name": "MHCAT", + "description": "Category for Medical History", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHSCAT", + "mandatory": false, + "name": "MHSCAT", + "description": "Subcategory for Medical History", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MH.MHPRESP", + "mandatory": false, + "name": "MHPRESP", + "description": "Medical History Event Pre-Specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MH.MHOCCUR", + "mandatory": false, + "name": "MHOCCUR", + "description": "Medical History Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MH.MHSTDTC", + "mandatory": false, + "name": "MHSTDTC", + "description": "Start Date/Time of Medical History Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_32", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHENDTC", + "mandatory": false, + "name": "MHENDTC", + "description": "End Date/Time of Medical History Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_33", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MH.MHENRF", + "mandatory": false, + "name": "MHENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_34", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.MH.MHENRTPT", + "mandatory": false, + "name": "MHENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_35", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.MH.MHENTPT", + "mandatory": false, + "name": "MHENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_36", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_14" + }, + { + "OID": "IG.SU", + "name": "SU", + "description": "Substance Use", + "domain": "SU", + "purpose": "Tabulation", + "structure": "One record per substance type per reported occurrence per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SUSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.SU.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUSEQ", + "mandatory": true, + "name": "SUSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUTRT", + "mandatory": true, + "name": "SUTRT", + "description": "Reported Name of Substance", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_37", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUCAT", + "mandatory": false, + "name": "SUCAT", + "description": "Category for Substance Use", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUSCAT", + "mandatory": false, + "name": "SUSCAT", + "description": "Subcategory for Substance Use", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUPRESP", + "mandatory": false, + "name": "SUPRESP", + "description": "SU Pre-Specified", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_38", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY_Y" + }, + { + "OID": "IT.SU.SUOCCUR", + "mandatory": false, + "name": "SUOCCUR", + "description": "SU Occurrence", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_39", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.SU.SUDOSE", + "mandatory": false, + "name": "SUDOSE", + "description": "Substance Use Consumption", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_40", + "dataType": "float", + "length": 12, + "displayFormat": "12.4", + "significantDigits": 4, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDOSTXT", + "mandatory": false, + "name": "SUDOSTXT", + "description": "Substance Use Consumption Text", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_41", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDOSU", + "mandatory": false, + "name": "SUDOSU", + "description": "Consumption Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_42", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.SU.SUDOSFRQ", + "mandatory": false, + "name": "SUDOSFRQ", + "description": "Use Frequency Per Interval", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_43", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.SU.SUSTDTC", + "mandatory": false, + "name": "SUSTDTC", + "description": "Start Date/Time of Substance Use", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_44", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUENDTC", + "mandatory": false, + "name": "SUENDTC", + "description": "End Date/Time of Substance Use", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_45", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUDUR", + "mandatory": false, + "name": "SUDUR", + "description": "Duration of Substance Use", + "role": "Timing", + "dataType": "durationDatetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SU.SUSTRF", + "mandatory": false, + "name": "SUSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_46", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUENRF", + "mandatory": false, + "name": "SUENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_49", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUSTRTPT", + "mandatory": false, + "name": "SUSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_47", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUSTTPT", + "mandatory": false, + "name": "SUSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_48", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SU.SUENRTPT", + "mandatory": false, + "name": "SUENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_50", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.SU.SUENTPT", + "mandatory": false, + "name": "SUENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_51", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_15" + }, + { + "OID": "IG.PR", + "name": "PR", + "description": "Procedures", + "domain": "PR", + "purpose": "Tabulation", + "structure": "One record per recorded procedure per occurrence per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "PRSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.PR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRSEQ", + "mandatory": true, + "name": "PRSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRTRT", + "mandatory": true, + "name": "PRTRT", + "description": "Reported Name of Procedure", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_83", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.PR.PRDECOD", + "mandatory": false, + "name": "PRDECOD", + "description": "Standardized Procedure Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_84", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.PROCEDUR" + }, + { + "OID": "IT.PR.PRCAT", + "mandatory": false, + "name": "PRCAT", + "description": "Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRSCAT", + "mandatory": false, + "name": "PRSCAT", + "description": "Subcategory", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.PR.PRPRESP", + "mandatory": false, + "name": "PRPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_85", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY_Y" + }, + { + "OID": "IT.PR.PROCCUR", + "mandatory": false, + "name": "PROCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_86", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.PR.PRLOC", + "mandatory": false, + "name": "PRLOC", + "description": "Location of Procedure", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_87", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.PR.PRLAT", + "mandatory": false, + "name": "PRLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_88", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.PR.PRSTDTC", + "mandatory": false, + "name": "PRSTDTC", + "description": "Start Date/Time of Procedure", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_89", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.PR.PRENDTC", + "mandatory": false, + "name": "PRENDTC", + "description": "End Date/Time of Procedure", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_90", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_18" + }, + { + "OID": "IG.VS", + "name": "VS", + "description": "Vital Signs", + "domain": "VS", + "purpose": "Tabulation", + "structure": "One record per vital sign measurement per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.VS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSEQ", + "mandatory": true, + "name": "VSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSTESTCD", + "mandatory": true, + "name": "VSTESTCD", + "description": "Vital Signs Test Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTESTCD" + }, + { + "OID": "IT.VS.VSTEST", + "mandatory": true, + "name": "VSTEST", + "description": "Vital Signs Test Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSTEST" + }, + { + "OID": "IT.VS.VSPOS", + "mandatory": false, + "name": "VSPOS", + "description": "Vital Signs Position of Subject", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.VS.VSORRES", + "mandatory": false, + "name": "VSORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_94", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSORRESU", + "mandatory": false, + "name": "VSORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_95", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSSTRESC", + "mandatory": false, + "name": "VSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESN", + "mandatory": false, + "name": "VSSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.VS.VSSTRESU", + "mandatory": false, + "name": "VSSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.VSRESU" + }, + { + "OID": "IT.VS.VSLOC", + "mandatory": false, + "name": "VSLOC", + "description": "Location of Vital Signs Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_96", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.VS.VSLAT", + "mandatory": false, + "name": "VSLAT", + "description": "Laterality", + "role": "Result Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.VS.VSLOBXFL", + "mandatory": false, + "name": "VSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.VS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.VS.VSDTC", + "mandatory": false, + "name": "VSDTC", + "description": "Date/Time of Measurements", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_97", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_20" + }, + { + "OID": "IG.EG", + "name": "EG", + "description": "ECG Test Results", + "domain": "EG", + "purpose": "Tabulation", + "structure": "One record per ECG observation per replicate per time point or one record per ECG observation per beat per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "EGSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.EG.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGSEQ", + "mandatory": true, + "name": "EGSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGTESTCD", + "mandatory": true, + "name": "EGTESTCD", + "description": "ECG Test or Examination Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EGTESTCD" + }, + { + "OID": "IT.EG.EGTEST", + "mandatory": true, + "name": "EGTEST", + "description": "ECG Test or Examination Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.EGTEST" + }, + { + "OID": "IT.EG.EGCAT", + "mandatory": false, + "name": "EGCAT", + "description": "Category for ECG", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EG.EGPOS", + "mandatory": false, + "name": "EGPOS", + "description": "ECG Position of Subject", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.POSITION" + }, + { + "OID": "IT.EG.EGORRES", + "mandatory": false, + "name": "EGORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_116", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + } + }, + { + "OID": "IT.EG.EGORRESU", + "mandatory": false, + "name": "EGORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EG.EGSTRESC", + "mandatory": false, + "name": "EGSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Derived", + "source": "Vendor" + }, + "codeList": "CL.EGSTRESC" + }, + { + "OID": "IT.EG.EGSTRESN", + "mandatory": false, + "name": "EGSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Vendor" + } + }, + { + "OID": "IT.EG.EGSTRESU", + "mandatory": false, + "name": "EGSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Vendor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EG.EGMETHOD", + "mandatory": false, + "name": "EGMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_117", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.EGMETHOD" + }, + { + "OID": "IT.EG.EGLOBXFL", + "mandatory": false, + "name": "EGLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.EG.EGEVAL", + "mandatory": false, + "name": "EGEVAL", + "description": "Evaluator", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_118", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.EVAL" + }, + { + "OID": "IT.EG.EGCLSIG", + "mandatory": false, + "name": "EGCLSIG", + "description": "Clinically Significant, Collected", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_119", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.EG.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EG.EGDTC", + "mandatory": false, + "name": "EGDTC", + "description": "Date/Time of ECG", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_120", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_27" + }, + { + "OID": "IG.CM", + "name": "CM", + "description": "Concomitant/Prior Medications", + "domain": "CM", + "purpose": "Tabulation", + "structure": "One record per recorded intervention occurrence or constant-dosing interval per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "CMSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.CM.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSEQ", + "mandatory": true, + "name": "CMSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMTRT", + "mandatory": true, + "name": "CMTRT", + "description": "Reported Name of Drug, Med, or Therapy", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_266", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDECOD", + "mandatory": false, + "name": "CMDECOD", + "description": "Standardized Medication Name", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_267", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCAT", + "mandatory": false, + "name": "CMCAT", + "description": "Category for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMSCAT", + "mandatory": false, + "name": "CMSCAT", + "description": "Subcategory for Medication", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMPRESP", + "mandatory": false, + "name": "CMPRESP", + "description": "CM Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMOCCUR", + "mandatory": false, + "name": "CMOCCUR", + "description": "CM Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.CM.CMINDC", + "mandatory": false, + "name": "CMINDC", + "description": "Indication", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_269", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMCLAS", + "mandatory": false, + "name": "CMCLAS", + "description": "Medication Class", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_268", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMCLASCD", + "mandatory": false, + "name": "CMCLASCD", + "description": "Medication Class Code", + "role": "Variable Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMDOSE", + "mandatory": false, + "name": "CMDOSE", + "description": "Dose per Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_270", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSTXT", + "mandatory": false, + "name": "CMDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_271", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMDOSU", + "mandatory": false, + "name": "CMDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_272", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.CM.CMDOSFRM", + "mandatory": false, + "name": "CMDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_273", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.CM.CMDOSFRQ", + "mandatory": false, + "name": "CMDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_274", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.CM.CMROUTE", + "mandatory": false, + "name": "CMROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_275", + "dataType": "text", + "length": 40, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.CM.CMSTDTC", + "mandatory": false, + "name": "CMSTDTC", + "description": "Start Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_276", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMENDTC", + "mandatory": false, + "name": "CMENDTC", + "description": "End Date/Time of Medication", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_277", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.CM.CMSTRF", + "mandatory": false, + "name": "CMSTRF", + "description": "Start Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_278", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENRF", + "mandatory": false, + "name": "CMENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_281", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTRTPT", + "mandatory": false, + "name": "CMSTRTPT", + "description": "Start Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_279", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMSTTPT", + "mandatory": false, + "name": "CMSTTPT", + "description": "Start Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_280", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.CM.CMENRTPT", + "mandatory": false, + "name": "CMENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_282", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.CM.CMENTPT", + "mandatory": false, + "name": "CMENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_283", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_55" + }, + { + "OID": "IG.MB", + "name": "MB", + "description": "Microbiology Specimen", + "domain": "MB", + "purpose": "Tabulation", + "structure": "One record per microbiology specimen finding per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MBSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.MB.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.MBSEQ", + "mandatory": true, + "name": "MBSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MB.MBTESTCD", + "mandatory": true, + "name": "MBTESTCD", + "description": "Microbiology Test or Finding Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBTESTCD" + }, + { + "OID": "IT.MB.MBTEST", + "mandatory": true, + "name": "MBTEST", + "description": "Microbiology Test or Finding Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBTEST" + }, + { + "OID": "IT.MB.MBTSTDTL", + "mandatory": false, + "name": "MBTSTDTL", + "description": "Measurement, Test or Examination Detail", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_592", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MBFTSDTL" + }, + { + "OID": "IT.MB.MBORRES", + "mandatory": false, + "name": "MBORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_593", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Vendor" + } + }, + { + "OID": "IT.MB.MBSTRESC", + "mandatory": false, + "name": "MBSTRESC", + "description": "Result or Finding in Standard Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Derived", + "source": "Vendor" + } + }, + { + "OID": "IT.MB.MBSPEC", + "mandatory": false, + "name": "MBSPEC", + "description": "Specimen Material Type", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_594", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.SPECTYPE" + }, + { + "OID": "IT.MB.MBMETHOD", + "mandatory": false, + "name": "MBMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_595", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.MB.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MB.MBDTC", + "mandatory": false, + "name": "MBDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_596", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_99" + }, + { + "OID": "IG.UR", + "name": "UR", + "description": "Urinary System Findings", + "domain": "UR", + "purpose": "Tabulation", + "structure": "One record per finding per location per per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "URSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.UR.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URSEQ", + "mandatory": true, + "name": "URSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URTESTCD", + "mandatory": true, + "name": "URTESTCD", + "description": "Short Name of Urinary Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTSCD" + }, + { + "OID": "IT.UR.URTEST", + "mandatory": true, + "name": "URTEST", + "description": "Name of Urinary Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.URNSTS" + }, + { + "OID": "IT.UR.URORRES", + "mandatory": false, + "name": "URORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URSTRESC", + "mandatory": false, + "name": "URSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "text", + "length": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.UR.URMETHOD", + "mandatory": false, + "name": "URMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.UR.URLOBXFL", + "mandatory": false, + "name": "URLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.UR.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.UR.URDTC", + "mandatory": false, + "name": "URDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_101" + }, + { + "OID": "IG.EC", + "name": "EC", + "description": "Exposure as Collected", + "domain": "EC", + "purpose": "Tabulation", + "structure": "One record per protocol-specified study treatment, collected-dosing interval, per subject, per mood", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "ECSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "INTERVENTIONS" + }, + "items": [ + { + "OID": "IT.EC.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.ECSEQ", + "mandatory": true, + "name": "ECSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.EC.ECREFID", + "mandatory": false, + "name": "ECREFID", + "description": "Reference ID", + "role": "Identifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_721", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECTRT", + "mandatory": true, + "name": "ECTRT", + "description": "Name of Treatment", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_720", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSE", + "mandatory": false, + "name": "ECDOSE", + "description": "Dose", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_722", + "dataType": "integer", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSTXT", + "mandatory": false, + "name": "ECDOSTXT", + "description": "Dose Description", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_723", + "dataType": "text", + "length": 100, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECDOSU", + "mandatory": false, + "name": "ECDOSU", + "description": "Dose Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_724", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.EC.ECDOSFRM", + "mandatory": false, + "name": "ECDOSFRM", + "description": "Dose Form", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_725", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FRM" + }, + { + "OID": "IT.EC.ECDOSFRQ", + "mandatory": false, + "name": "ECDOSFRQ", + "description": "Dosing Frequency per Interval", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_726", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.FREQ" + }, + { + "OID": "IT.EC.ECDOSRGM", + "mandatory": false, + "name": "ECDOSRGM", + "description": "Intended Dose Regimen", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_727", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECROUTE", + "mandatory": false, + "name": "ECROUTE", + "description": "Route of Administration", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_728", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ROUTE" + }, + { + "OID": "IT.EC.ECLOC", + "mandatory": false, + "name": "ECLOC", + "description": "Location of Dose Administration", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_729", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.EC.ECLAT", + "mandatory": false, + "name": "ECLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_730", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.EC.ECDIR", + "mandatory": false, + "name": "ECDIR", + "description": "Directionality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_731", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DIR" + }, + { + "OID": "IT.EC.ECSTDTC", + "mandatory": false, + "name": "ECSTDTC", + "description": "Start Date/Time of Treatment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_732", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.EC.ECENDTC", + "mandatory": false, + "name": "ECENDTC", + "description": "End Date/Time of Treatment", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_733", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_112" + }, + { + "OID": "IG.QS", + "name": "QS", + "description": "Questionnaires", + "domain": "QS", + "purpose": "Tabulation", + "structure": "One record per questionnaire per question per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "QSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.QS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSSEQ", + "mandatory": true, + "name": "QSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSTESTCD", + "mandatory": true, + "name": "QSTESTCD", + "description": "Question Short Name", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSTEST", + "mandatory": true, + "name": "QSTEST", + "description": "Question Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSCAT", + "mandatory": true, + "name": "QSCAT", + "description": "Category of Question", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.QSCAT" + }, + { + "OID": "IT.QS.QSORRES", + "mandatory": false, + "name": "QSORRES", + "description": "Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_740", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.QS.QSSTRESC", + "mandatory": false, + "name": "QSSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSSTRESN", + "mandatory": false, + "name": "QSSTRESN", + "description": "Numeric Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "integer", + "length": 1, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.QS.QSLOBXFL", + "mandatory": false, + "name": "QSLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.QS.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.QS.QSDTC", + "mandatory": false, + "name": "QSDTC", + "description": "Date/Time of Finding", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_741", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_114" + }, + { + "OID": "IG.AE", + "name": "AE", + "description": "Adverse Events", + "domain": "AE", + "purpose": "Tabulation", + "structure": "One record per adverse event per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "AESEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "EVENTS" + }, + "items": [ + { + "OID": "IT.AE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESEQ", + "mandatory": true, + "name": "AESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AETERM", + "mandatory": true, + "name": "AETERM", + "description": "Reported Term for the Adverse Event", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_785", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AELLT", + "mandatory": false, + "name": "AELLT", + "description": "Lowest Level Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AELLTCD", + "mandatory": false, + "name": "AELLTCD", + "description": "Lowest Level Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEDECOD", + "mandatory": true, + "name": "AEDECOD", + "description": "Dictionary-Derived Term", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_786", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEPTCD", + "mandatory": false, + "name": "AEPTCD", + "description": "Preferred Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLT", + "mandatory": false, + "name": "AEHLT", + "description": "High Level Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLTCD", + "mandatory": false, + "name": "AEHLTCD", + "description": "High Level Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLGT", + "mandatory": false, + "name": "AEHLGT", + "description": "High Level Group Term", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEHLGTCD", + "mandatory": false, + "name": "AEHLGTCD", + "description": "High Level Group Term Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AECAT", + "mandatory": false, + "name": "AECAT", + "description": "Category for Adverse Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESCAT", + "mandatory": false, + "name": "AESCAT", + "description": "Subcategory for Adverse Event", + "role": "Grouping Qualifier", + "dataType": "text", + "length": 200, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AEPRESP", + "mandatory": false, + "name": "AEPRESP", + "description": "Pre-Specified Adverse Event", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.AE.AEBODSYS", + "mandatory": false, + "name": "AEBODSYS", + "description": "Body System or Organ Class", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEBDSYCD", + "mandatory": false, + "name": "AEBDSYCD", + "description": "Body System or Organ Class Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESOC", + "mandatory": false, + "name": "AESOC", + "description": "Primary System Organ Class", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AESOCCD", + "mandatory": false, + "name": "AESOCCD", + "description": "Primary System Organ Class Code", + "role": "Variable Qualifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.AE.AELOC", + "mandatory": false, + "name": "AELOC", + "description": "Location of Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_787", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.AE.AESEV", + "mandatory": false, + "name": "AESEV", + "description": "Severity/Intensity", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_788", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.AESEV" + }, + { + "OID": "IT.AE.AESER", + "mandatory": false, + "name": "AESER", + "description": "Serious Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_789", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AEACN", + "mandatory": false, + "name": "AEACN", + "description": "Action Taken with Study Treatment", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_790", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ACN" + }, + { + "OID": "IT.AE.AEACNOTH", + "mandatory": false, + "name": "AEACNOTH", + "description": "Other Action Taken", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_791", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEREL", + "mandatory": false, + "name": "AEREL", + "description": "Causality", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_792", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AERELNST", + "mandatory": false, + "name": "AERELNST", + "description": "Relationship to Non-Study Treatment", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_793", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEPATT", + "mandatory": false, + "name": "AEPATT", + "description": "Pattern of Adverse Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_794", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEOUT", + "mandatory": false, + "name": "AEOUT", + "description": "Outcome of Adverse Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_795", + "dataType": "text", + "length": 200, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.OUT" + }, + { + "OID": "IT.AE.AESCAN", + "mandatory": false, + "name": "AESCAN", + "description": "Involves Cancer", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_796", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESCONG", + "mandatory": false, + "name": "AESCONG", + "description": "Congenital Anomaly or Birth Defect", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_797", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESDISAB", + "mandatory": false, + "name": "AESDISAB", + "description": "Persist or Signif Disability/Incapacity", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_798", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESDTH", + "mandatory": false, + "name": "AESDTH", + "description": "Results in Death", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_799", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESHOSP", + "mandatory": false, + "name": "AESHOSP", + "description": "Requires or Prolongs Hospitalization", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_800", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESLIFE", + "mandatory": false, + "name": "AESLIFE", + "description": "Is Life Threatening", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_801", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESOD", + "mandatory": false, + "name": "AESOD", + "description": "Occurred with Overdose", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_802", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AESMIE", + "mandatory": false, + "name": "AESMIE", + "description": "Other Medically Important Serious Event", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_803", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AECONTRT", + "mandatory": false, + "name": "AECONTRT", + "description": "Concomitant or Additional Trtmnt Given", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_804", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY_NY" + }, + { + "OID": "IT.AE.AETOXGR", + "mandatory": false, + "name": "AETOXGR", + "description": "Standard Toxicity Grade", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_805", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AESTDTC", + "mandatory": false, + "name": "AESTDTC", + "description": "Start Date/Time of Adverse Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_806", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEENDTC", + "mandatory": false, + "name": "AEENDTC", + "description": "End Date/Time of Adverse Event", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_807", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.AE.AEENRF", + "mandatory": false, + "name": "AEENRF", + "description": "End Relative to Reference Period", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_808", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.AE.AEENRTPT", + "mandatory": false, + "name": "AEENRTPT", + "description": "End Relative to Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_809", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.STENRF" + }, + { + "OID": "IT.AE.AEENTPT", + "mandatory": false, + "name": "AEENTPT", + "description": "End Reference Time Point", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_810", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_135" + }, + { + "OID": "IG.MK", + "name": "MK", + "description": "Musculoskeletal System Findings", + "domain": "MK", + "purpose": "Tabulation", + "structure": "One record per assessment per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "MKSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.MK.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSEQ", + "mandatory": true, + "name": "MKSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKTESTCD", + "mandatory": true, + "name": "MKTESTCD", + "description": "Short Name of Musculoskeletal Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MUSCTSCD" + }, + { + "OID": "IT.MK.MKTEST", + "mandatory": true, + "name": "MKTEST", + "description": "Name of Musculoskeletal Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.MUSCTS" + }, + { + "OID": "IT.MK.MKORRES", + "mandatory": false, + "name": "MKORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_920", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MK.MKORRESU", + "mandatory": false, + "name": "MKORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_921", + "dataType": "text", + "length": 20, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.MK.MKSTRESC", + "mandatory": false, + "name": "MKSTRESC", + "description": "Character Result/Finding in Std Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSTRESN", + "mandatory": false, + "name": "MKSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 8, + "displayFormat": "8.3", + "significantDigits": 3, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.MK.MKSTRESU", + "mandatory": false, + "name": "MKSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 20, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.MK.MKLOC", + "mandatory": false, + "name": "MKLOC", + "description": "Location Used for the Measurement", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_922", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.LOC" + }, + { + "OID": "IT.MK.MKLAT", + "mandatory": false, + "name": "MKLAT", + "description": "Laterality", + "role": "Variable Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_923", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.LAT" + }, + { + "OID": "IT.MK.MKMETHOD", + "mandatory": false, + "name": "MKMETHOD", + "description": "Method of Test or Examination", + "role": "Record Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_924", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.METHOD" + }, + { + "OID": "IT.MK.MKLOBXFL", + "mandatory": false, + "name": "MKLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.MK.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.MK.MKDTC", + "mandatory": false, + "name": "MKDTC", + "description": "Date/Time of Collection", + "role": "Timing", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_925", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_160" + }, + { + "OID": "IG.TS", + "name": "TS", + "description": "Trial Summary", + "domain": "TS", + "purpose": "Tabulation", + "structure": "One record per trial summary parameter value", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "TSPARMCD", + "TSSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TS.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSSEQ", + "mandatory": true, + "name": "TSSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.TS.TSPARMCD", + "mandatory": true, + "name": "TSPARMCD", + "description": "Trial Summary Parameter Short Name", + "role": "Topic", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_949", + "dataType": "text", + "length": null, + "codeList": "CL.TSPARMCD" + }, + { + "OID": "IT.TS.TSPARM", + "mandatory": true, + "name": "TSPARM", + "description": "Trial Summary Parameter", + "role": "Synonym Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_950", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.TSPARM" + }, + { + "OID": "IT.TS.TSVAL", + "mandatory": false, + "name": "TSVAL", + "description": "Parameter Value", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_951", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVALCD", + "mandatory": false, + "name": "TSVALCD", + "description": "Parameter Value Code", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_952", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TS.TSVCDREF", + "mandatory": false, + "name": "TSVCDREF", + "description": "Name of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_953", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.DICTNAM" + }, + { + "OID": "IT.TS.TSVCDVER", + "mandatory": false, + "name": "TSVCDVER", + "description": "Version of the Reference Terminology", + "role": "Result Qualifier", + "conceptProperty": "CONCPROP.BiomedicalConceptProperty_954", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_162", + "slices": [ + { + "OID": "VL.TS.TSPARMCD", + "name": "VL_TS_TSPARMCD", + "type": "ValueList", + "wasDerivedFrom": "IT.TS.TSPARMCD", + "items": [ + { + "OID": "IT.TS.TSPARMCD.COMPTRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.8c559472" + ] + }, + { + "OID": "IT.TS.TSPARMCD.CRMDUR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.bcc79825" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INDIC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e5769859" + ] + }, + { + "OID": "IT.TS.TSPARMCD.INTTYPE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d3e89d3f" + ] + }, + { + "OID": "IT.TS.TSPARMCD.NARMS", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.efd2a465" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJPRIM", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.fe255586" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OBJSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.62794b6c" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSPRI", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.4266ae9d" + ] + }, + { + "OID": "IT.TS.TSPARMCD.OUTMSSEC", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.1d6311e2" + ] + }, + { + "OID": "IT.TS.TSPARMCD.SPONSOR", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.e06f8db5" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TITLE", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d94c6616" + ] + }, + { + "OID": "IT.TS.TSPARMCD.TRT", + "mandatory": false, + "name": "TSPARMCD", + "dataType": "text", + "length": 200, + "origin": { + "type": "Protocol", + "source": "Sponsor" + }, + "applicableWhen": [ + "WC.TS.d368cfb2" + ] + } + ] + } + ] + }, + { + "OID": "IG.FT", + "name": "FT", + "description": "Functional Tests", + "domain": "FT", + "purpose": "Tabulation", + "structure": "One record per Functional Test finding per time point per visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "FTSEQ" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "FINDINGS" + }, + "items": [ + { + "OID": "IT.FT.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSEQ", + "mandatory": true, + "name": "FTSEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTTESTCD", + "mandatory": true, + "name": "FTTESTCD", + "description": "Short Name of Test", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTTEST", + "mandatory": true, + "name": "FTTEST", + "description": "Name of Test", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTCAT", + "mandatory": true, + "name": "FTCAT", + "description": "Category", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.FTCAT" + }, + { + "OID": "IT.FT.FTSCAT", + "mandatory": false, + "name": "FTSCAT", + "description": "Subcategory", + "role": "Grouping Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTORRES", + "mandatory": false, + "name": "FTORRES", + "description": "Result or Finding in Original Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTORRESU", + "mandatory": false, + "name": "FTORRESU", + "description": "Original Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.FT.FTSTRESC", + "mandatory": false, + "name": "FTSTRESC", + "description": "Result or Finding in Standard Format", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSTRESN", + "mandatory": false, + "name": "FTSTRESN", + "description": "Numeric Result/Finding in Standard Units", + "role": "Result Qualifier", + "dataType": "float", + "length": 4, + "displayFormat": "5.2", + "significantDigits": 2, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.FT.FTSTRESU", + "mandatory": false, + "name": "FTSTRESU", + "description": "Standard Units", + "role": "Variable Qualifier", + "dataType": "text", + "length": 1, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.UNIT" + }, + { + "OID": "IT.FT.FTSTAT", + "mandatory": false, + "name": "FTSTAT", + "description": "Completion Status", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ND" + }, + { + "OID": "IT.FT.FTREASND", + "mandatory": false, + "name": "FTREASND", + "description": "Reason Not Done", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTLOBXFL", + "mandatory": false, + "name": "FTLOBXFL", + "description": "Last Observation Before Exposure Flag", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.FT.VISITNUM", + "mandatory": false, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.FT.FTDTC", + "mandatory": false, + "name": "FTDTC", + "description": "Date/Time of Test", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ], + "implementsConcept": "CONC.BiomedicalConcept_172" + }, + { + "OID": "IG.TA", + "name": "TA", + "description": "Trial Arms", + "domain": "TA", + "purpose": "Tabulation", + "structure": "One record per planned Element per Arm", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ARMCD", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TA.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.ARMCD", + "mandatory": true, + "name": "ARMCD", + "description": "Planned Arm Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARMCD" + }, + { + "OID": "IT.TA.ARM", + "mandatory": true, + "name": "ARM", + "description": "Description of Planned Arm", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ARM" + }, + { + "OID": "IT.TA.TAETORD", + "mandatory": true, + "name": "TAETORD", + "description": "Planned Order of Element within Arm", + "role": "Timing", + "dataType": "integer", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.TA.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TA.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TA.TABRANCH", + "mandatory": false, + "name": "TABRANCH", + "description": "Branch", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.TATRANS", + "mandatory": false, + "name": "TATRANS", + "description": "Transition Rule", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TA.EPOCH", + "mandatory": true, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + } + ] + }, + { + "OID": "IG.TE", + "name": "TE", + "description": "Trial Elements", + "domain": "TE", + "purpose": "Tabulation", + "structure": "One record per planned Element", + "isReferenceData": true, + "keySequence": [ + "STUDYID", + "ETCD" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "TRIAL DESIGN" + }, + "items": [ + { + "OID": "IT.TE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.TE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.TE.ELEMENT", + "mandatory": true, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.TE.TESTRL", + "mandatory": true, + "name": "TESTRL", + "description": "Rule for Start of Element", + "role": "Rule", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + } + ] + }, + { + "OID": "IG.SV", + "name": "SV", + "description": "Subject Visits", + "domain": "SV", + "purpose": "Tabulation", + "structure": "One record per actual or planned visit per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "VISITNUM" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SV.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISITNUM", + "mandatory": true, + "name": "VISITNUM", + "description": "Visit Number", + "role": "Topic", + "dataType": "integer", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.VISIT", + "mandatory": false, + "name": "VISIT", + "description": "Visit Name", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SV.SVPRESP", + "mandatory": false, + "name": "SVPRESP", + "description": "Pre-specified", + "role": "Variable Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVOCCUR", + "mandatory": false, + "name": "SVOCCUR", + "description": "Occurrence", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.NY" + }, + { + "OID": "IT.SV.SVCNTMOD", + "mandatory": false, + "name": "SVCNTMOD", + "description": "Contact Mode", + "role": "Record Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Collected", + "source": "Investigator" + }, + "codeList": "CL.CNTMODE" + }, + { + "OID": "IT.SV.SVSTDTC", + "mandatory": false, + "name": "SVSTDTC", + "description": "Start Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SV.SVENDTC", + "mandatory": false, + "name": "SVENDTC", + "description": "End Date/Time of Observation", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + }, + { + "OID": "IG.SE", + "name": "SE", + "description": "Subject Elements", + "domain": "SE", + "purpose": "Tabulation", + "structure": "One record per actual Element per subject", + "isReferenceData": false, + "keySequence": [ + "STUDYID", + "USUBJID", + "SESTDTC" + ], + "standard": "STD.SDTMIG", + "observationClass": { + "name": "SPECIAL-PURPOSE" + }, + "items": [ + { + "OID": "IT.SE.STUDYID", + "mandatory": true, + "name": "STUDYID", + "description": "Study Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.DOMAIN", + "mandatory": true, + "name": "DOMAIN", + "description": "Domain Abbreviation", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.USUBJID", + "mandatory": true, + "name": "USUBJID", + "description": "Unique Subject Identifier", + "role": "Identifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.SESEQ", + "mandatory": true, + "name": "SESEQ", + "description": "Sequence Number", + "role": "Identifier", + "dataType": "integer", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + } + }, + { + "OID": "IT.SE.ETCD", + "mandatory": true, + "name": "ETCD", + "description": "Element Code", + "role": "Topic", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ETCD" + }, + { + "OID": "IT.SE.ELEMENT", + "mandatory": false, + "name": "ELEMENT", + "description": "Description of Element", + "role": "Synonym Qualifier", + "dataType": "text", + "length": null, + "origin": { + "type": "Assigned", + "source": "Sponsor" + }, + "codeList": "CL.ELEMENT" + }, + { + "OID": "IT.SE.EPOCH", + "mandatory": false, + "name": "EPOCH", + "description": "Epoch", + "role": "Timing", + "dataType": "text", + "length": null, + "origin": { + "type": "Derived", + "source": "Sponsor" + }, + "codeList": "CL.EPOCH" + }, + { + "OID": "IT.SE.SESTDTC", + "mandatory": true, + "name": "SESTDTC", + "description": "Start Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + }, + { + "OID": "IT.SE.SEENDTC", + "mandatory": false, + "name": "SEENDTC", + "description": "End Date/Time of Element", + "role": "Timing", + "dataType": "datetime", + "origin": { + "type": "Collected", + "source": "Investigator" + } + } + ] + } + ], + "conditions": [ + { + "OID": "COND.TS.TSPARMCD.4b2c750e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "COMPTRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.745804cb", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "CRMDUR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.82dcbb4a", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INDIC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.de0404c1", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "INTTYPE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.1d8ed13f", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "NARMS" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.cccc9db0", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJPRIM" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.863c5858", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OBJSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.69b92c86", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSPRI" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.df99032e", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "OUTMSSEC" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.5b1e67a5", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "SPONSOR" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.90f47ac3", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TITLE" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + }, + { + "OID": "COND.TS.TSPARMCD.e2190e21", + "rangeChecks": [ + { + "comparator": "EQ", + "checkValues": [ + "TRT" + ], + "item": "IT.TS.TSPARMCD", + "softHard": "Soft" + } + ] + } + ], + "whereClauses": [ + { + "OID": "WC.TS.8c559472", + "conditions": [ + "COND.TS.TSPARMCD.4b2c750e" + ] + }, + { + "OID": "WC.TS.bcc79825", + "conditions": [ + "COND.TS.TSPARMCD.745804cb" + ] + }, + { + "OID": "WC.TS.e5769859", + "conditions": [ + "COND.TS.TSPARMCD.82dcbb4a" + ] + }, + { + "OID": "WC.TS.d3e89d3f", + "conditions": [ + "COND.TS.TSPARMCD.de0404c1" + ] + }, + { + "OID": "WC.TS.efd2a465", + "conditions": [ + "COND.TS.TSPARMCD.1d8ed13f" + ] + }, + { + "OID": "WC.TS.fe255586", + "conditions": [ + "COND.TS.TSPARMCD.cccc9db0" + ] + }, + { + "OID": "WC.TS.62794b6c", + "conditions": [ + "COND.TS.TSPARMCD.863c5858" + ] + }, + { + "OID": "WC.TS.4266ae9d", + "conditions": [ + "COND.TS.TSPARMCD.69b92c86" + ] + }, + { + "OID": "WC.TS.1d6311e2", + "conditions": [ + "COND.TS.TSPARMCD.df99032e" + ] + }, + { + "OID": "WC.TS.e06f8db5", + "conditions": [ + "COND.TS.TSPARMCD.5b1e67a5" + ] + }, + { + "OID": "WC.TS.d94c6616", + "conditions": [ + "COND.TS.TSPARMCD.90f47ac3" + ] + }, + { + "OID": "WC.TS.d368cfb2", + "conditions": [ + "COND.TS.TSPARMCD.e2190e21" + ] + } + ], + "codeLists": [ + { + "OID": "CL.ARMCD", + "name": "ARM Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Placebo" + }, + { + "codedValue": "Xanomeline Low Dose" + }, + { + "codedValue": "Xanomeline High Dose" + } + ] + }, + { + "OID": "CL.ARM", + "name": "ARM", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Placebo" + }, + { + "codedValue": "Xanomeline Low Dose" + }, + { + "codedValue": "Xanomeline High Dose" + } + ] + }, + { + "OID": "CL.ELEMENT", + "name": "Description of Element", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "Screening" + }, + { + "codedValue": "Placebo" + }, + { + "codedValue": "Low" + }, + { + "codedValue": "High - Start" + }, + { + "codedValue": "High - Middle" + }, + { + "codedValue": "High - End" + }, + { + "codedValue": "Follow up" + } + ] + }, + { + "OID": "CL.ETCD", + "name": "Element Code", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "EL1", + "decode": "Screening" + }, + { + "codedValue": "EL2", + "decode": "Placebo" + }, + { + "codedValue": "EL3", + "decode": "Low" + }, + { + "codedValue": "EL4", + "decode": "High - Start" + }, + { + "codedValue": "EL5", + "decode": "High - Middle" + }, + { + "codedValue": "EL6", + "decode": "High - End" + }, + { + "codedValue": "EL7", + "decode": "Follow up" + } + ] + }, + { + "OID": "CL.EPOCH", + "name": "Epoch", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99079", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "Screening", + "coding": { + "code": "C202487", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 1", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 2", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Treatment 3", + "coding": { + "code": "C101526", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "Follow-up", + "coding": { + "code": "C202578", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.ad42d7e1", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "INFORMED CONSENT OBTAINED", + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED" + } + ] + } + ] + }, + { + "OID": "CL.39e500d6", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "RANDOMIZED", + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED" + } + ] + } + ] + }, + { + "OID": "CL.30a86bdd", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "X-RAY", + "coding": [ + { + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "X-RAY" + } + ] + } + ] + }, + { + "OID": "CL.20024ecd", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "beats/min", + "coding": [ + { + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min" + } + ] + } + ] + }, + { + "OID": "CL.da016f8d", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "breaths/min", + "coding": [ + { + "code": "C49674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "breaths/min" + } + ] + } + ] + }, + { + "OID": "CL.798c8fb6", + "name": "EGORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "deg", + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "deg" + } + ] + } + ] + }, + { + "OID": "CL.6751dc8e", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CT SCAN", + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CT SCAN" + } + ] + } + ] + }, + { + "OID": "CL.5ae118a0", + "name": "PRLOC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CHEST", + "coding": [ + { + "code": "C25389", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CHEST" + } + ] + } + ] + }, + { + "OID": "CL.35f151cb", + "name": "PRDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "MRI", + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + } + ] + }, + { + "OID": "CL.bfc80e1f", + "name": "PRLOC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BRAIN", + "coding": [ + { + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN" + } + ] + } + ] + }, + { + "OID": "CL.af8f8a19", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "BLOOD", + "coding": [ + { + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD" + } + ] + } + ] + }, + { + "OID": "CL.1aeb2034", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "ERYTHROCYTES", + "coding": [ + { + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES" + } + ] + } + ] + }, + { + "OID": "CL.a00fe0a9", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "fL", + "coding": [ + { + "code": "C64780", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "fL" + } + ] + } + ] + }, + { + "OID": "CL.68e5ab5a", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "10^9/L", + "coding": [ + { + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L" + } + ] + } + ] + }, + { + "OID": "CL.2c53325c", + "name": "LBORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "10^6/L", + "coding": [ + { + "code": "C67452", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^6/L" + } + ] + } + ] + }, + { + "OID": "CL.9e69169e", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM OR PLASMA", + "coding": [ + { + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA" + } + ] + } + ] + }, + { + "OID": "CL.c75bb752", + "name": "MBTSTDTL Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "DETECTION", + "coding": [ + { + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION" + } + ] + } + ] + }, + { + "OID": "CL.bbc50609", + "name": "MBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SERUM", + "coding": [ + { + "code": "C13325", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM" + } + ] + } + ] + }, + { + "OID": "CL.bdb73f2b", + "name": "MBMETHOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "LINE PROBE ASSAY", + "coding": [ + { + "code": "C102656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "LINE PROBE ASSAY" + } + ] + } + ] + }, + { + "OID": "CL.5183f82c", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "URINE", + "coding": [ + { + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE" + } + ] + } + ] + }, + { + "OID": "CL.5fc938fc", + "name": "LBSPEC Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "STOOL", + "coding": [ + { + "code": "C13234", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "STOOL" + } + ] + } + ] + }, + { + "OID": "CL.b8dca4b6", + "name": "QSEVAL Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "CAREGIVER", + "coding": [ + { + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER" + } + ] + } + ] + }, + { + "OID": "CL.d8fccc32", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "SITE TRANSFER", + "coding": [ + { + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SITE TRANSFER" + } + ] + } + ] + }, + { + "OID": "CL.a3e2e2db", + "name": "DSDECOD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "coding": [ + { + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY" + } + ] + } + ] + }, + { + "OID": "CL.7cfd6cc5", + "name": "VSORRESU Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "mmHg", + "coding": [ + { + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg" + } + ] + } + ] + }, + { + "OID": "CL.1e00cfce", + "name": "TSPARMCD Response Codes", + "dataType": "text", + "isNonStandard": true, + "codeListItems": [ + { + "codedValue": "EGCTMON", + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON" + } + ] + } + ] + }, + { + "OID": "CL.NCOMPLT", + "name": "Completion/Reason for Non-Completion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66727", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSCAT", + "name": "Category of Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74558", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DSSCAT", + "name": "Subcategory for Disposition Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C170443", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.IECAT", + "name": "Category of Inclusion/Exclusion", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66797", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY", + "name": "No Yes Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.AGEU", + "name": "Age Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66781", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SEX", + "name": "Sex", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66731", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SCTESTCD", + "name": "Subject Characteristic Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74559", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.SCTEST", + "name": "Subject Characteristic Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C103330", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.STENRF", + "name": "Relation to Reference Period", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66728", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY_Y", + "name": "No Yes Response (Subset Y)", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.NY_NY", + "name": "No Yes Response (Subset NY)", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66742", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.UNIT", + "name": "Unit", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71620", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FREQ", + "name": "Frequency", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71113", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.PROCEDUR", + "name": "Procedure", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C101858", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "CT SCAN", + "decode": "CAT Scan", + "coding": { + "code": "C17204", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "MRI", + "decode": "Magnetic Resonance Imaging", + "coding": { + "code": "C16809", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "X-RAY", + "decode": "Static X-Ray", + "coding": { + "code": "C38101", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.LOC", + "name": "Anatomical Location", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C74456", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "BRAIN", + "decode": "Nervous System, Brain", + "coding": { + "code": "C12439", + "codeSystem": "nci:ExtCodeID" + } + }, + { + "codedValue": "CHEST", + "decode": "Chest", + "coding": { + "code": "C25389", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.LAT", + "name": "Laterality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99073", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTESTCD", + "name": "Vital Signs Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66741", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSTEST", + "name": "Vital Signs Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.POSITION", + "name": "Position", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71148", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.VSRESU", + "name": "Units for Vital Signs Results", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66770", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGTESTCD", + "name": "ECG Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71153", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGTEST", + "name": "ECG Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGSTRESC", + "name": "ECG Result", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71150", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EGMETHOD", + "name": "ECG Test Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C71151", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.EVAL", + "name": "Evaluator", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78735", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "CAREGIVER", + "decode": "Caregiver", + "coding": { + "code": "C17445", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.FRM", + "name": "Dosage Form", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66726", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ROUTE", + "name": "Route of Administration Response", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66729", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTESTCD", + "name": "Laboratory Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C65047", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.LBTEST", + "name": "Laboratory Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67154", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBTESTCD", + "name": "Microbiology Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C120527", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBTEST", + "name": "Microbiology Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C120528", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MBFTSDTL", + "name": "Microbiology Findings Test Details", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C174225", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "DETECTION", + "decode": "", + "coding": { + "code": "C174330", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.SPECTYPE", + "name": "Specimen Type", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C78734", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "SERUM", + "decode": "Sera", + "coding": { + "code": "C13325", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.METHOD", + "name": "Method", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C85492", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "LINE PROBE ASSAY", + "decode": "LiPA", + "coding": { + "code": "C102656", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.URNSTSCD", + "name": "Urinary System Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129942", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.URNSTS", + "name": "Urinary System Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C129941", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.DIR", + "name": "Directionality", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C99074", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.QSCAT", + "name": "Category of Questionnaire", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C100129", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.AESEV", + "name": "Severity/Intensity Scale for Adverse Events", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66769", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ACN", + "name": "Action Taken with Study Treatment", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66767", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.OUT", + "name": "Outcome of Event", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66768", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MUSCTSCD", + "name": "Musculoskeletal System Finding Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C127269", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.MUSCTS", + "name": "Musculoskeletal System Finding Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C127270", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.TSPARMCD", + "name": "Trial Summary Parameter Test Code", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66738", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "EGCTMON", + "decode": "ECG Continuous Monitoring", + "coding": { + "code": "C119561", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.TSPARM", + "name": "Trial Summary Parameter Test Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C67152", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "ECG Continuous Monitoring", + "decode": "ECG Continuous Monitoring", + "coding": { + "code": "C119561", + "codeSystem": "nci:ExtCodeID" + } + } + ] + }, + { + "OID": "CL.DICTNAM", + "name": "Dictionary Name", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66788", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.FTCAT", + "name": "Category of Functional Test", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C115304", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.ND", + "name": "Not Done", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C66789", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "__PLACEHOLDER__", + "decode": "__PLACEHOLDER__" + } + ] + }, + { + "OID": "CL.CNTMODE", + "name": "Mode of Subject Contact", + "dataType": "text", + "standard": "STD.SDTMCT", + "coding": [ + { + "code": "C171445", + "codeSystem": "nci:ExtCodeID" + } + ], + "codeListItems": [ + { + "codedValue": "IN PERSON", + "decode": "In-Person", + "coding": { + "code": "C175574", + "codeSystem": "nci:ExtCodeID" + } + } + ] + } + ], + "methods": [], + "comments": [], + "standards": [ + { + "OID": "STD.SDTMIG", + "name": "SDTMIG", + "type": "IG", + "version": "3.4", + "status": "FINAL" + }, + { + "OID": "STD.SDTMCT", + "name": "CDISC/NCI", + "type": "CT", + "version": "2026-03-27", + "status": "FINAL", + "publishingSet": "SDTM" + } + ], + "annotatedCRF": [], + "concepts": [ + { + "OID": "CONC.BiomedicalConcept_1", + "name": "Informed Consent", + "label": null, + "aliases": [ + "Informed Consent Obtained" + ], + "href": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_2", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_3", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_2", + "name": "Inclusion Criteria", + "label": "Inclusion Criteria", + "aliases": [ + "Inclusion" + ], + "href": "/mdr/bc/biomedicalconcepts/C25532", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_4", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_5", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_6", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Inclusion Criteria" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_3", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "aliases": [ + "Inclusion Exclusion Criteria Yes No Indicator", + "IEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83063", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_7", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_8", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_4", + "name": "Exclusion Criteria", + "label": "Exclusion Criteria", + "aliases": [ + "Exclusion" + ], + "href": "/mdr/bc/biomedicalconcepts/C25370", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_9", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_10", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_11", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Exclusion Criteria" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_5", + "name": "Subject is Randomized", + "label": "Subject is Randomized", + "aliases": [ + "Randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_12", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_13", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_14", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_6", + "name": "Race", + "label": "Race", + "aliases": [ + "Racial Group" + ], + "href": "/mdr/bc/biomedicalconcepts/C17049", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_15", + "name": "RACE", + "label": "RACE", + "mandatory": false, + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_16", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Race" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_7", + "name": "Ethnic Group", + "label": "Ethnic Group", + "aliases": [ + "Ethnicity", + "Ethnic Origin" + ], + "href": "/mdr/bc/biomedicalconcepts/C16564", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_17", + "name": "ETHNIC", + "label": "ETHNIC", + "mandatory": false, + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_18", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_8", + "name": "Subject Age", + "label": "Subject Age", + "aliases": [ + "Age" + ], + "href": "/mdr/bc/biomedicalconcepts/C69260", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_19", + "name": "AGE", + "label": "AGE", + "mandatory": false, + "coding": [ + { + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_20", + "name": "AGEU", + "label": "AGEU", + "mandatory": false, + "coding": [ + { + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_21", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C69260", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Subject Age" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_9", + "name": "Birth Date and Time", + "label": "Birth Date and Time", + "aliases": [ + "BRTHDTC", + "Date/Time of Birth" + ], + "href": "/mdr/bc/biomedicalconcepts/C83217", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_22", + "name": "BRTHDTC", + "label": "BRTHDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_23", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83217", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Birth Date and Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_10", + "name": "Sex", + "label": null, + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C28421", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_24", + "name": "SEX", + "label": "SEX", + "mandatory": false, + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_25", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_11", + "name": "Education Level", + "label": "Education Level", + "aliases": [ + "EDULEVEL", + "Education", + "Education Level", + "Education Level Completed", + "education_level", + "Educational Attainment", + "Educational Level", + "Level of Education Attained" + ], + "href": "/mdr/bc/biomedicalconcepts/C17953", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_26", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_27", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C17953", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Education Level" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_12", + "name": "Number of Years of Education", + "label": "Number of Years of Education", + "aliases": [ + "EDUYRNUM", + "Number of Years of Education" + ], + "href": "/mdr/bc/biomedicalconcepts/C122393", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_28", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_29", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C122393", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Number of Years of Education" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_14", + "name": "Solicited Medical History", + "label": "Solicited Medical History", + "aliases": [ + "Medical History", + "Medical History Collection" + ], + "href": "/mdr/bc/biomedicalconcepts/C200145", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_30", + "name": "MHTERM", + "label": "MHTERM", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_31", + "name": "MHDECOD", + "label": "MHDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_32", + "name": "MHSTDTC", + "label": "MHSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_33", + "name": "MHENDTC", + "label": "MHENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_34", + "name": "MHENRF", + "label": "MHENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_35", + "name": "MHENRTPT", + "label": "MHENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_36", + "name": "MHENTPT", + "label": "MHENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C200145", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Medical History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_15", + "name": "Alcohol Use History", + "label": "Alcohol Use History", + "aliases": [ + "Alcohol History", + "Alcohol Use" + ], + "href": "/mdr/bc/biomedicalconcepts/C81229", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_37", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_38", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_39", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_40", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_41", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_42", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_43", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_44", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_45", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_46", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_47", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_48", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_49", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_50", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_51", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alcohol Use History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_16", + "name": "Caffeine Use History", + "label": "Caffeine Use History", + "aliases": [ + "Caffeine History", + "Caffeine Use" + ], + "href": "/mdr/bc/biomedicalconcepts/C201990", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_52", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_53", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_54", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_55", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_56", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_57", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_58", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_59", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_60", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_61", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_62", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_63", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_64", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_65", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_66", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Caffeine Use History" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_17", + "name": "History of Tobacco Use", + "label": "History of Tobacco Use", + "aliases": [ + "Tobacco Use", + "Tobacco Use History" + ], + "href": "/mdr/bc/biomedicalconcepts/C181760", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_67", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_68", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_69", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_70", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_71", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_72", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_73", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_74", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_75", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_76", + "name": "SUDUR", + "label": "SUDUR", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_77", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_78", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_79", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_80", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_81", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_82", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C181760", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "History of Tobacco Use" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_18", + "name": "X-Ray Imaging", + "label": "X-Ray Imaging", + "aliases": [ + "Conventional X-Ray", + "Medical Imaging", + "X-Ray", + "Static X-Ray" + ], + "href": "/mdr/bc/biomedicalconcepts/C38101", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_83", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_84", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.30a86bdd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_85", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_86", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_87", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_88", + "name": "PRLAT", + "label": "PRLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_89", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_90", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "X-Ray Imaging" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_19", + "name": "Subject is Randomized", + "label": null, + "aliases": [ + "Randomized" + ], + "href": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_91", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_92", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_93", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_20", + "name": "Body Temperature", + "label": "Body Temperature", + "aliases": [ + "Temperature" + ], + "href": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_94", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_95", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_96", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_97", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_21", + "name": "Body Weight", + "label": "Body Weight", + "aliases": [ + "WEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_98", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_99", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_100", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_22", + "name": "Body Height", + "label": "Body Height", + "aliases": [ + "HEIGHT" + ], + "href": "/mdr/bc/biomedicalconcepts/C164634", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_101", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_102", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_103", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C164634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Height" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_23", + "name": "Pulse Rate", + "label": "Pulse Rate", + "aliases": [ + "Pulse" + ], + "href": "/mdr/bc/biomedicalconcepts/C49676", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_104", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_105", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_106", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_107", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_108", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_109", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_24", + "name": "Respiratory Rate", + "label": "Respiratory Rate", + "aliases": [ + "RESP", + "RESPRATE" + ], + "href": "/mdr/bc/biomedicalconcepts/C49678", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_110", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_111", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.da016f8d" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_112", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49678", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_25", + "name": "Body Mass Index", + "label": "Body Mass Index", + "aliases": [ + "BMI", + "Quetelet Index" + ], + "href": "/mdr/bc/biomedicalconcepts/C16358", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_113", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_114", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_115", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C16358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Mass Index" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_26", + "name": "Blood Pressure", + "label": "Blood Pressure", + "aliases": [ + "BP" + ], + "href": "/mdr/bc/biomedicalconcepts/C54706", + "properties": [], + "coding": [ + { + "code": "C54706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_27", + "name": "Electrocardiogram Analysis", + "label": "Electrocardiogram Analysis", + "aliases": [ + "ECG Analysis", + "EKG Analysis", + "Electrocardiogram Interpretation", + "ECG Interpretation", + "EKG Interpretation" + ], + "href": "/mdr/bc/biomedicalconcepts/C181655", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_116", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_117", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_118", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_119", + "name": "EGCLSIG", + "label": "EGCLSIG", + "mandatory": false, + "coding": [ + { + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_120", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C181655", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Electrocardiogram Analysis" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_28", + "name": "Atrioventricular Conduction ECG Assessment", + "label": "Atrioventricular Conduction ECG Assessment", + "aliases": [ + "AVCOND", + "Atrioventricular Conduction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111131", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_121", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_122", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_123", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_124", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_125", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111131", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Atrioventricular Conduction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_29", + "name": "Axis and Voltage ECG Assessment", + "label": "Axis and Voltage ECG Assessment", + "aliases": [ + "AXISVOLT", + "Axis and Voltage" + ], + "href": "/mdr/bc/biomedicalconcepts/C111132", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_126", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_127", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_128", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_129", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_130", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111132", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Axis and Voltage ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_30", + "name": "Chamber Hypertrophy or Enlargement ECG Assessment", + "label": "Chamber Hypertrophy or Enlargement ECG Assessment", + "aliases": [ + "CHYPTENL", + "Chamber Hypertrophy or Enlargement" + ], + "href": "/mdr/bc/biomedicalconcepts/C111155", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_131", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_132", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_133", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_134", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_135", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Chamber Hypertrophy or Enlargement ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_31", + "name": "ECG Technical Quality", + "label": "ECG Technical Quality", + "aliases": [ + "TECHQUAL" + ], + "href": "/mdr/bc/biomedicalconcepts/C117807", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_136", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_137", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_138", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_139", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117807", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "ECG Technical Quality" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_32", + "name": "Intraventricular and Intraatrial Conduction ECG Assessment", + "label": "Intraventricular and Intraatrial Conduction ECG Assessment", + "aliases": [ + "IVTIACD", + "Intraventricular-Intraatrial Conduction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111238", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_140", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_141", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_142", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_143", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_144", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Intraventricular and Intraatrial Conduction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_33", + "name": "Myocardial Infarction ECG Assessment", + "label": "Myocardial Infarction ECG Assessment", + "aliases": [ + "MI", + "Myocardial Infarction" + ], + "href": "/mdr/bc/biomedicalconcepts/C111280", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_145", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_146", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_147", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_148", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + } + ], + "coding": [ + { + "code": "C111280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Myocardial Infarction ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_34", + "name": "Pacemaker ECG Assessment", + "label": "Pacemaker ECG Assessment", + "aliases": [ + "PACEMAKR", + "Pacemaker" + ], + "href": "/mdr/bc/biomedicalconcepts/C111285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_149", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_150", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_151", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_152", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_153", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Pacemaker ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_35", + "name": "Rhythm Not Otherwise Specified ECG Assessment", + "label": "Rhythm Not Otherwise Specified ECG Assessment", + "aliases": [ + "RHYNOS", + "Rhythm Not Otherwise Specified" + ], + "href": "/mdr/bc/biomedicalconcepts/C111307", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_154", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_155", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_156", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_157", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_158", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111307", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Rhythm Not Otherwise Specified ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_36", + "name": "ST Segment, T wave, and U wave ECG Assessment", + "label": "ST Segment, T wave, and U wave ECG Assessment", + "aliases": [ + "STSTWUW", + "ST Segment, T wave, and U wave" + ], + "href": "/mdr/bc/biomedicalconcepts/C111363", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_159", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_160", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_161", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_162", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_163", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111363", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "ST Segment, T wave, and U wave ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_37", + "name": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "label": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "aliases": [ + "SNRARRY", + "Sinus Node Rhythms and Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111312", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_164", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_165", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_166", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_167", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_168", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111312", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Sinus Node Rhythm and Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_38", + "name": "Supraventricular Arrhythmia ECG Assessment", + "label": "Supraventricular Arrhythmia ECG Assessment", + "aliases": [ + "SPRARRY", + "Supraventricular Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111320", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_169", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_170", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_171", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_172", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_173", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111320", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_39", + "name": "Supraventricular Tachyarrhythmia ECG Assessment", + "label": "Supraventricular Tachyarrhythmia ECG Assessment", + "aliases": [ + "SPRTARRY", + "Supraventricular Tachyarrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111321", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_174", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_175", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_176", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_177", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_178", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Tachyarrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_40", + "name": "Aggregate PR Interval", + "label": "Aggregate PR Interval", + "aliases": [ + "PR Interval Aggregate", + "PQ Interval Aggregate", + "PRAG", + "PQAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117773", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_179", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_180", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_181", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_182", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_183", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_184", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_185", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117773", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate PR Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_41", + "name": "Aggregate QRS Duration", + "label": "Aggregate QRS Duration", + "aliases": [ + "QRS Aggregate Duration", + "QRSAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117779", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_186", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_187", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_188", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_189", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_190", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_191", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_192", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117779", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QRS Duration" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_42", + "name": "Aggregate QT Interval", + "label": "Aggregate QT Interval", + "aliases": [ + "QT Interval Aggregate", + "QTAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117783", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_193", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_194", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_195", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_196", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_197", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_198", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_199", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QT Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_43", + "name": "Aggregate QTCB Interval", + "label": "Aggregate QTCB Interval", + "aliases": [ + "QTCB Interval Aggregate", + "QTCBAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117784", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_200", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_201", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_202", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_203", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_204", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_205", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_206", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117784", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCB Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_44", + "name": "Aggregate QTCF Interval", + "label": "Aggregate QTCF Interval", + "aliases": [ + "QTCF Interval Aggregate", + "QTCFAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117786", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_207", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_208", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_209", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_210", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_211", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_212", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_213", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCF Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_45", + "name": "Aggregate RR Interval", + "label": "Aggregate RR Interval", + "aliases": [ + "RR Interval Aggregate", + "RRAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C117791", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_214", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_215", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_216", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_217", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_218", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_219", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_220", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C117791", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Aggregate RR Interval" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_46", + "name": "Mean Heart Rate by Electrocardiogram", + "label": "Mean Heart Rate by Electrocardiogram", + "aliases": [ + "ECG Mean Heart Rate", + "EKG Mean Heart Rate", + "EGHRMN" + ], + "href": "/mdr/bc/biomedicalconcepts/C119259", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_221", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_222", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_223", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_224", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_225", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_226", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C119259", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Mean Heart Rate by Electrocardiogram" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_47", + "name": "QRS Axis", + "label": "QRS Axis", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C118165", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle" + } + ], + "codeList": "CL.798c8fb6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_230", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_231", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_232", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C118165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QRS Axis" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_48", + "name": "QTc Correction Method Unspecified, Aggregate", + "label": "QTc Correction Method Unspecified, Aggregate", + "aliases": [ + "QTCUNSAG" + ], + "href": "/mdr/bc/biomedicalconcepts/C174285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_233", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_234", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_235", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_236", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_237", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_238", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C174285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QTc Correction Method Unspecified, Aggregate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_49", + "name": "Ventricular Arrhythmia ECG Assessment", + "label": "Ventricular Arrhythmia ECG Assessment", + "aliases": [ + "VTARRY", + "Ventricular Arrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111330", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Arrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_50", + "name": "Ventricular Tachyarrhythmia ECG Assessment", + "label": "Ventricular Tachyarrhythmia ECG Assessment", + "aliases": [ + "VTTARRY", + "Ventricular Tachyarrhythmias" + ], + "href": "/mdr/bc/biomedicalconcepts/C111331", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Tachyarrhythmia ECG Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_51", + "name": "Computed Tomography", + "label": "Computed Tomography", + "aliases": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "href": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.5ae118a0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_52", + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "aliases": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "href": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_54", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "aliases": [ + "CMYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_55", + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "aliases": [ + "Concomitant Medication" + ], + "href": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_56", + "name": "Hemoglobin Measurement", + "label": "Hemoglobin Measurement", + "aliases": [ + "Hemoglobin", + "HGB" + ], + "href": "/mdr/bc/biomedicalconcepts/C64848", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_57", + "name": "Hematocrit Measurement", + "label": "Hematocrit Measurement", + "aliases": [ + "Hematocrit", + "Packed Cell Volume", + "PCV", + "Erythrocyte Volume Fraction", + "EVF" + ], + "href": "/mdr/bc/biomedicalconcepts/C64796", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64796", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hematocrit Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_58", + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "aliases": [ + "RBC", + "Red Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_59", + "name": "Erythrocyte Mean Corpuscular Hemoglobin", + "label": "Erythrocyte Mean Corpuscular Hemoglobin", + "aliases": [ + "RBC Mean Corpuscular Hemoglobin", + "MCH" + ], + "href": "/mdr/bc/biomedicalconcepts/C64797", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Hemoglobin" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_60", + "name": "Erythrocyte Mean Corpuscular Volume", + "label": "Erythrocyte Mean Corpuscular Volume", + "aliases": [ + "RBC Mean Corpuscular Volume", + "MCV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64799", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume" + } + ], + "codeList": "CL.a00fe0a9" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64799", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Volume" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_61", + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "aliases": [ + "WBC", + "White Blood Cells" + ], + "href": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_62", + "name": "Segmented Neutrophil Count", + "label": "Segmented Neutrophil Count", + "aliases": [ + "Segmented Neutrophils", + "NEUTSG" + ], + "href": "/mdr/bc/biomedicalconcepts/C81997", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C81997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Segmented Neutrophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_63", + "name": "Neutrophil Band Form Count", + "label": "Neutrophil Band Form Count", + "aliases": [ + "Neutrophil Bands", + "Bands", + "NEUTB" + ], + "href": "/mdr/bc/biomedicalconcepts/C64830", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.2c53325c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64830", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Neutrophil Band Form Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_64", + "name": "Absolute Neutrophil Count", + "label": "Absolute Neutrophil Count", + "aliases": [ + "Neutrophils", + "Total Neutrophil Count", + "NEUT" + ], + "href": "/mdr/bc/biomedicalconcepts/C63321", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C63321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Neutrophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_65", + "name": "Monocyte Count", + "label": "Monocyte Count", + "aliases": [ + "Monocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C64823", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64823", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Monocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_66", + "name": "Eosinophil Count", + "label": "Eosinophil Count", + "aliases": [ + "Eosinophils" + ], + "href": "/mdr/bc/biomedicalconcepts/C64550", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64550", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Eosinophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_67", + "name": "Absolute Basophil Count", + "label": "Absolute Basophil Count", + "aliases": [ + "Basophils", + "Total Basophil Count" + ], + "href": "/mdr/bc/biomedicalconcepts/C64470", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64470", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Basophil Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_68", + "name": "Platelet Count", + "label": "Platelet Count", + "aliases": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_69", + "name": "Microcyte Count", + "label": "Microcyte Count", + "aliases": [ + "Microcytes", + "MICROCY" + ], + "href": "/mdr/bc/biomedicalconcepts/C64822", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64822", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Microcyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_70", + "name": "Macrocyte Count", + "label": "Macrocyte Count", + "aliases": [ + "Macrocytes", + "MACROCY" + ], + "href": "/mdr/bc/biomedicalconcepts/C64821", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64821", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Macrocyte Count" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_71", + "name": "Anisocyte Measurement", + "label": "Anisocyte Measurement", + "aliases": [ + "Anisocytes", + "Anisocytosis", + "ANISO" + ], + "href": "/mdr/bc/biomedicalconcepts/C74797", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anisocyte Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_72", + "name": "Poikilocyte Measurement", + "label": "Poikilocyte Measurement", + "aliases": [ + "POIKILO", + "Poikilocytes" + ], + "href": "/mdr/bc/biomedicalconcepts/C79602", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C79602", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Poikilocyte Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_73", + "name": "Polychromasia", + "label": "Polychromasia", + "aliases": [ + "POLYCHR" + ], + "href": "/mdr/bc/biomedicalconcepts/C64803", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Polychromasia" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_74", + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "aliases": [ + "ALT", + "SGPT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_75", + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "aliases": [ + "Albumin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_76", + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "aliases": [ + "Alkaline Phosphatase" + ], + "href": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_77", + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "aliases": [ + "AST", + "SGOT" + ], + "href": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_78", + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "aliases": [ + "Creatinine" + ], + "href": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_79", + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "aliases": [ + "Potassium", + "K" + ], + "href": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_80", + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "aliases": [ + "Sodium", + "NA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_81", + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "aliases": [ + "Urea Nitrogen" + ], + "href": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_82", + "name": "Bicarbonate Measurement", + "label": "Bicarbonate Measurement", + "aliases": [ + "Bicarbonate", + "HCO3" + ], + "href": "/mdr/bc/biomedicalconcepts/C74667", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Bicarbonate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_83", + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "aliases": [ + "Chloride", + "CL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_84", + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_85", + "name": "Gamma Glutamyl Transpeptidase Measurement", + "label": "Gamma Glutamyl Transpeptidase Measurement", + "aliases": [ + "Gamma Glutamyl Transferase", + "GGT", + "GGTP" + ], + "href": "/mdr/bc/biomedicalconcepts/C64847", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64847", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Gamma Glutamyl Transpeptidase Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_86", + "name": "Urate Measurement", + "label": "Urate Measurement", + "aliases": [ + "Urate", + "Uric Acid" + ], + "href": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_87", + "name": "Phosphate Measurement", + "label": "Phosphate Measurement", + "aliases": [ + "Phosphorus", + "Phosphate" + ], + "href": "/mdr/bc/biomedicalconcepts/C64857", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_471", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_472", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_473", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64857", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Phosphate Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_88", + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "aliases": [ + "Calcium", + "CA" + ], + "href": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_480", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_481", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_482", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_483", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_484", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_89", + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_495", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_496", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_497", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_498", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_499", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_500", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_90", + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_506", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_507", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_508", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_509", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_510", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_91", + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "aliases": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "href": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_516", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_517", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_518", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_519", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_520", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_92", + "name": "Triiodothyronine Uptake Measurement", + "label": "Triiodothyronine Uptake Measurement", + "aliases": [ + "T3UP", + "T3U", + "Triiodothyronine Resin Uptake" + ], + "href": "/mdr/bc/biomedicalconcepts/C74748", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_526", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_527", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_528", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_529", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_530", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74748", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Uptake Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_93", + "name": "Triiodothyronine Measurement", + "label": "Triiodothyronine Measurement", + "aliases": [ + "T3", + "Total T3" + ], + "href": "/mdr/bc/biomedicalconcepts/C74747", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_535", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_536", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_537", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_538", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_539", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74747", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_94", + "name": "Free Thyroxine Measurement", + "label": "Free Thyroxine Measurement", + "aliases": [ + "Free T4", + "T4FR" + ], + "href": "/mdr/bc/biomedicalconcepts/C74786", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_545", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_546", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_547", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_548", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_549", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_95", + "name": "Free Thyroxine Index", + "label": "Free Thyroxine Index", + "aliases": [ + "T4FRIDX" + ], + "href": "/mdr/bc/biomedicalconcepts/C170598", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_555", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_556", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_557", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_558", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C170598", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Index" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_96", + "name": "Thyrotropin Measurement", + "label": "Thyrotropin Measurement", + "aliases": [ + "TSH", + "Thyrotropin" + ], + "href": "/mdr/bc/biomedicalconcepts/C64813", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_564", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_565", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_566", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_567", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_568", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64813", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Thyrotropin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_97", + "name": "Folic Acid Measurement", + "label": "Folic Acid Measurement", + "aliases": [ + "Folate", + "Folic Acid", + "Vitamin B9", + "VITB9" + ], + "href": "/mdr/bc/biomedicalconcepts/C74676", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_574", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_575", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_576", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_577", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_578", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Folic Acid Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_98", + "name": "Vitamin B12 Measurement", + "label": "Vitamin B12 Measurement", + "aliases": [ + "Cobalamin", + "Vitamin B12", + "VITB12" + ], + "href": "/mdr/bc/biomedicalconcepts/C64817", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_584", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_585", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_586", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_587", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_588", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Vitamin B12 Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_99", + "name": "Treponema pallidum Antibody Measurement", + "label": "Treponema pallidum Antibody Measurement", + "aliases": [ + "TPLAB", + "Treponema pallidum Antibody", + "Syphilis Antibody" + ], + "href": "/mdr/bc/biomedicalconcepts/C132388", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_592", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_593", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_594", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.bbc50609" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_595", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_596", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C132388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum Antibody Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_100", + "name": "Treponema pallidum DNA Measurement", + "label": "Treponema pallidum DNA Measurement", + "aliases": [ + "TPADNA", + "Syphilis DNA" + ], + "href": "/mdr/bc/biomedicalconcepts/C198341", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_606", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_607", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_608", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_609", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ], + "codeList": "CL.bdb73f2b" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_610", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C198341", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum DNA Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_101", + "name": "Color Assessment", + "label": "Color Assessment", + "aliases": [ + "COLOR", + "Color" + ], + "href": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_616", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_617", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_618", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_102", + "name": "Specific Gravity", + "label": "Specific Gravity", + "aliases": [ + "SPGRAV" + ], + "href": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_629", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_630", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_631", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_632", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_103", + "name": "Total Protein Measurement", + "label": null, + "aliases": [ + "Protein" + ], + "href": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_633", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_634", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_635", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_636", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_637", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_104", + "name": "Glucose Measurement", + "label": null, + "aliases": [ + "Glucose" + ], + "href": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_643", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_644", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_645", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_646", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_647", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_105", + "name": "Ketone Measurement", + "label": "Ketone Measurement", + "aliases": [ + "Ketones" + ], + "href": "/mdr/bc/biomedicalconcepts/C64854", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_652", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_653", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_654", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_655", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_656", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64854", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Ketone Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_106", + "name": "Total Bilirubin Measurement", + "label": null, + "aliases": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "href": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_657", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_658", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_659", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_660", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_661", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_107", + "name": "Urobilinogen Measurement", + "label": "Urobilinogen Measurement", + "aliases": [ + "Urobilinogen", + "UROBIL" + ], + "href": "/mdr/bc/biomedicalconcepts/C64816", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_667", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_668", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_669", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_670", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_671", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64816", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urobilinogen Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_108", + "name": "Occult Blood Measurement", + "label": "Occult Blood Measurement", + "aliases": [ + "Occult Blood", + "OCCBLD" + ], + "href": "/mdr/bc/biomedicalconcepts/C74686", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_676", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_677", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5fc938fc" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_678", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_679", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C74686", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occult Blood Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_109", + "name": "Nitrite Measurement", + "label": "Nitrite Measurement", + "aliases": [ + "NITRITE" + ], + "href": "/mdr/bc/biomedicalconcepts/C64810", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_684", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_685", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_686", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_687", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_688", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64810", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Nitrite Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_110", + "name": "Hemoglobin A1C Measurement", + "label": "Hemoglobin A1C Measurement", + "aliases": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C" + ], + "href": "/mdr/bc/biomedicalconcepts/C64849", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_703", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_704", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_705", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_706", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin A1C Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_111", + "name": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "label": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "aliases": [ + "Hemoglobin A1C/Hemoglobin", + "HBA1CHGB" + ], + "href": "/mdr/bc/biomedicalconcepts/C111207", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_713", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_714", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_715", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_716", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C111207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Hemoglobin A1C to Hemoglobin Ratio Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_112", + "name": "Exposure as Collected Domain", + "label": "Exposure as Collected Domain", + "aliases": [ + "EC", + "Exposure as Collected" + ], + "href": "/mdr/bc/biomedicalconcepts/C117466", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_720", + "name": "ECTRT", + "label": "ECTRT", + "mandatory": true, + "coding": [ + { + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_721", + "name": "ECREFID", + "label": "ECREFID", + "mandatory": false, + "coding": [ + { + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_722", + "name": "ECDOSE", + "label": "ECDOSE", + "mandatory": false, + "coding": [ + { + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_723", + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_724", + "name": "ECDOSU", + "label": "ECDOSU", + "mandatory": false, + "coding": [ + { + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_725", + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_726", + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_727", + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "mandatory": false, + "coding": [ + { + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_728", + "name": "ECROUTE", + "label": "ECROUTE", + "mandatory": false, + "coding": [ + { + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_729", + "name": "ECLOC", + "label": "ECLOC", + "mandatory": false, + "coding": [ + { + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_730", + "name": "ECLAT", + "label": "ECLAT", + "mandatory": false, + "coding": [ + { + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_731", + "name": "ECDIR", + "label": "ECDIR", + "mandatory": false, + "coding": [ + { + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_732", + "name": "ECSTDTC", + "label": "ECSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_733", + "name": "ECENDTC", + "label": "ECENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment" + } + ] + } + ], + "coding": [ + { + "code": "C117466", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-10-03", + "decode": "Exposure as Collected Domain" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_113", + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_734", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_735", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_736", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + } + ], + "coding": [ + { + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_114", + "name": "TTS Acceptability Survey - Patch Acceptability", + "label": "TTS Acceptability Survey - Patch Acceptability", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT4", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_740", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_741", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_742", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT4", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Acceptability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_115", + "name": "TTS Acceptability Survey - Patch Appearance", + "label": "TTS Acceptability Survey - Patch Appearance", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT1", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_748", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_749", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_750", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Appearance" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_116", + "name": "TTS Acceptability Survey - Patch Durability", + "label": "TTS Acceptability Survey - Patch Durability", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT3", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_777", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_778", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_779", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Durability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_117", + "name": "TTS Acceptability Survey - Patch Size", + "label": "TTS Acceptability Survey - Patch Size", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT2", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_780", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_781", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_782", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + } + ], + "coding": [ + { + "code": "NEW_LZZT2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Size" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_134", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_783", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_784", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_135", + "name": "Solicited Adverse Event", + "label": "Solicited Adverse Event", + "aliases": [ + "Adverse Event" + ], + "href": "/mdr/bc/biomedicalconcepts/C179175", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_785", + "name": "AETERM", + "label": "AETERM", + "mandatory": true, + "coding": [ + { + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_786", + "name": "AEDECOD", + "label": "AEDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_787", + "name": "AELOC", + "label": "AELOC", + "mandatory": false, + "coding": [ + { + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_788", + "name": "AESEV", + "label": "AESEV", + "mandatory": false, + "coding": [ + { + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_789", + "name": "AESER", + "label": "AESER", + "mandatory": false, + "coding": [ + { + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_790", + "name": "AEACN", + "label": "AEACN", + "mandatory": false, + "coding": [ + { + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_791", + "name": "AEACNOTH", + "label": "AEACNOTH", + "mandatory": false, + "coding": [ + { + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_792", + "name": "AEREL", + "label": "AEREL", + "mandatory": false, + "coding": [ + { + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_793", + "name": "AERELNST", + "label": "AERELNST", + "mandatory": false, + "coding": [ + { + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_794", + "name": "AEPATT", + "label": "AEPATT", + "mandatory": false, + "coding": [ + { + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_795", + "name": "AEOUT", + "label": "AEOUT", + "mandatory": false, + "coding": [ + { + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_796", + "name": "AESCAN", + "label": "AESCAN", + "mandatory": false, + "coding": [ + { + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_797", + "name": "AESCONG", + "label": "AESCONG", + "mandatory": false, + "coding": [ + { + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_798", + "name": "AESDISAB", + "label": "AESDISAB", + "mandatory": false, + "coding": [ + { + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_799", + "name": "AESDTH", + "label": "AESDTH", + "mandatory": false, + "coding": [ + { + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_800", + "name": "AESHOSP", + "label": "AESHOSP", + "mandatory": false, + "coding": [ + { + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_801", + "name": "AESLIFE", + "label": "AESLIFE", + "mandatory": false, + "coding": [ + { + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_802", + "name": "AESOD", + "label": "AESOD", + "mandatory": false, + "coding": [ + { + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_803", + "name": "AESMIE", + "label": "AESMIE", + "mandatory": false, + "coding": [ + { + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_804", + "name": "AECONTRT", + "label": "AECONTRT", + "mandatory": false, + "coding": [ + { + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_805", + "name": "AETOXGR", + "label": "AETOXGR", + "mandatory": false, + "coding": [ + { + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_806", + "name": "AESTDTC", + "label": "AESTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_807", + "name": "AEENDTC", + "label": "AEENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_808", + "name": "AEENRF", + "label": "AEENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_809", + "name": "AEENRTPT", + "label": "AEENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_810", + "name": "AEENTPT", + "label": "AEENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + } + ], + "coding": [ + { + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Adverse Event" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_136", + "name": "Complete", + "label": "Complete", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C25250", + "properties": [], + "coding": [ + { + "code": "C25250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Complete [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_137", + "name": "Failure To Meet Continuation Criteria", + "label": "Failure To Meet Continuation Criteria", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C139236", + "properties": [], + "coding": [ + { + "code": "C139236", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Failure To Meet Continuation Criteria [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_138", + "name": "Dead", + "label": "Dead", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C28554", + "properties": [], + "coding": [ + { + "code": "C28554", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Dead [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_139", + "name": "Lack of Efficacy", + "label": "Lack of Efficacy", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48226", + "properties": [], + "coding": [ + { + "code": "C48226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lack of Efficacy [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_140", + "name": "Lost To Follow-Up", + "label": "Lost To Follow-Up", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48227", + "properties": [], + "coding": [ + { + "code": "C48227", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lost To Follow-Up [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_141", + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_142", + "name": "Physician Decision", + "label": "Physician Decision", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C48250", + "properties": [], + "coding": [ + { + "code": "C48250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Physician Decision [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_143", + "name": "Pregnant Subject", + "label": "Pregnant Subject", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C191656", + "properties": [], + "coding": [ + { + "code": "C191656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Pregnant Subject [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_144", + "name": "Progressive Disease", + "label": "Progressive Disease", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C35571", + "properties": [], + "coding": [ + { + "code": "C35571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Progressive Disease [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_145", + "name": "Protocol Deviation", + "label": "Protocol Deviation", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C50996", + "properties": [], + "coding": [ + { + "code": "C50996", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Protocol Deviation" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_146", + "name": "Study Site Transfer", + "label": "Study Site Transfer", + "aliases": [ + "Site Transfer", + "Study Subject Site Transfer" + ], + "href": "/mdr/bc/biomedicalconcepts/C186208", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_811", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.d8fccc32" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_812", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_813", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Site Transfer" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_147", + "name": "Study Terminated By Sponsor", + "label": "Study Terminated By Sponsor", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49632", + "properties": [], + "coding": [ + { + "code": "C49632", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Terminated By Sponsor" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_148", + "name": "Subject Removed at Sponsor Request", + "label": "Subject Removed at Sponsor Request", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C161410", + "properties": [], + "coding": [ + { + "code": "C161410", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Subject Removed at Sponsor Request [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_149", + "name": "Trial Screen Failure", + "label": "Trial Screen Failure", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49628", + "properties": [], + "coding": [ + { + "code": "C49628", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Screen Failure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_150", + "name": "Trial Site Terminated by Sponsor", + "label": "Trial Site Terminated by Sponsor", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C106576", + "properties": [], + "coding": [ + { + "code": "C106576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Site Terminated by Sponsor" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_151", + "name": "Withdrawal by Subject", + "label": "Withdrawal by Subject", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C49634", + "properties": [], + "coding": [ + { + "code": "C49634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal by Subject" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_152", + "name": "Withdrawal of Consent From Protocol-Specified Activity", + "label": "Withdrawal of Consent From Protocol-Specified Activity", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C170610", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_823", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.a3e2e2db" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_824", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_825", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal of Consent From Protocol-Specified Activity" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_153", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_832", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_833", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_834", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_835", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_836", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_837", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_154", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_862", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_863", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_864", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_865", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_866", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_867", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_155", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_880", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_881", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_882", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_883", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_884", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_885", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_156", + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "aliases": [ + "SYSBP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_886", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_887", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_888", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_889", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_890", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_891", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_157", + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "aliases": [ + "DIABP" + ], + "href": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_892", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_893", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_894", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_895", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_896", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_897", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_158", + "name": "Heart Rate", + "label": "Heart Rate", + "aliases": [ + "HR" + ], + "href": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_898", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_899", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_900", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_901", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_902", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_903", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_159", + "name": "Isometric Muscle Strength", + "label": "Isometric Muscle Strength", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C138967", + "properties": [], + "coding": [ + { + "code": "C138967", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Isometric Muscle Strength" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_160", + "name": "Skeletal Muscle Mass Measurement", + "label": "Skeletal Muscle Mass Measurement", + "aliases": [ + "SMMASS", + "Skeletal Muscle Mass" + ], + "href": "/mdr/bc/biomedicalconcepts/C178017", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_920", + "name": "MKORRES", + "label": "MKORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_921", + "name": "MKORRESU", + "label": "MKORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_922", + "name": "MKLOC", + "label": "MKLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_923", + "name": "MKLAT", + "label": "MKLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_924", + "name": "MKMETHOD", + "label": "MKMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_925", + "name": "MKDTC", + "label": "MKDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C178017", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Skeletal Muscle Mass Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_161", + "name": "Muscle Endurance Measurement", + "label": "Muscle Endurance Measurement", + "aliases": [ + "ENDURM", + "Muscle Endurance" + ], + "href": "/mdr/bc/biomedicalconcepts/C181501", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_933", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_934", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_935", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_936", + "name": "Laterality", + "label": "Laterality", + "mandatory": true, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_937", + "name": "Test Method", + "label": "Test Method", + "mandatory": true, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_938", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C181501", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Muscle Endurance Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_162", + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "aliases": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "href": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_949", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_950", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_951", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_952", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_953", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_954", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_164", + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_955", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_956", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_957", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + } + ], + "coding": [ + { + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_165", + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "aliases": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "href": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_974", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_975", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_976", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_977", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_978", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_979", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_980", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_166", + "name": "Computed Tomography", + "label": "Computed Tomography", + "aliases": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "href": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_997", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_998", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_999", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1000", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1001", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1002", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1003", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure" + } + ] + } + ], + "coding": [ + { + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_168", + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "aliases": [ + "Vital Signs", + "VS" + ], + "href": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "coding": [ + { + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_169", + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "aliases": [ + "Vital Signs", + "VS" + ], + "href": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "coding": [ + { + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_170", + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "aliases": null, + "href": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "coding": [ + { + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_171", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "aliases": [ + "AEYN" + ], + "href": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1012", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1013", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_172", + "name": "CDISC ADAS-Cog - Word Recall Average Score", + "label": "CDISC ADAS-Cog - Word Recall Average Score", + "aliases": [ + "ADCRL", + "Word Recall", + "CDISC ADAS-Cog - Word Recall Average Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100177", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1022", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1023", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1024", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1025", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1026", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1027", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1028", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1029", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100177", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recall Average Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_173", + "name": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "label": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "aliases": [ + "ADCOF", + "Naming Objects and Fingers", + "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100191", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1030", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1031", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1032", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1033", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1034", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1035", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1036", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1037", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100191", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_174", + "name": "CDISC ADAS-Cog - Commands Summary Score", + "label": "CDISC ADAS-Cog - Commands Summary Score", + "aliases": [ + "ADCCMD", + "Commands", + "CDISC ADAS-Cog - Commands Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100209", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1046", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1047", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1048", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1049", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1050", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1051", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1052", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1053", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Commands Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_175", + "name": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "label": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "aliases": [ + "ADCDRL", + "Delayed Word Recall", + "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100215", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1062", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1063", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1064", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1065", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1066", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1067", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1068", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1069", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_176", + "name": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "label": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "aliases": [ + "ADCCP", + "Constructional Praxis", + "CDISC ADAS-Cog - Constructional Praxis Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100226", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1078", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1079", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1080", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1081", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1082", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1083", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1084", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1085", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + } + ], + "coding": [ + { + "code": "C100226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Constructional Praxis Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_177", + "name": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "label": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "aliases": [ + "ADCIP", + "Ideational Praxis", + "CDISC ADAS-Cog - Ideational Praxis Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100232", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1094", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1095", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1096", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1097", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1098", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1099", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1100", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1101", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + } + ], + "coding": [ + { + "code": "C100232", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Ideational Praxis Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_178", + "name": "CDISC ADAS-Cog - Orientation Summary Score", + "label": "CDISC ADAS-Cog - Orientation Summary Score", + "aliases": [ + "ADCOR", + "Orientation", + "CDISC ADAS-Cog - Orientation Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100238", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1110", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1111", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1112", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1113", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1114", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1115", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1116", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1117", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + } + ], + "coding": [ + { + "code": "C100238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Orientation Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_179", + "name": "CDISC ADAS-Cog - Word Recognition Summary Score", + "label": "CDISC ADAS-Cog - Word Recognition Summary Score", + "aliases": [ + "ADCRG", + "Word Recognition", + "CDISC ADAS-Cog - Word Recognition Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100247", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1126", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1127", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1128", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1129", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1130", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1131", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1132", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1133", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + } + ], + "coding": [ + { + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_180", + "name": "CDISC ADAS-Cog - Remembering Test Instructions", + "label": "CDISC ADAS-Cog - Remembering Test Instructions", + "aliases": [ + "ADCRI", + "Remembering Test Instructions", + "CDISC ADAS-Cog - Remembering Test Instructions" + ], + "href": "/mdr/bc/biomedicalconcepts/C100275", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1142", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1143", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1144", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1145", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1146", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1147", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1148", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1149", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + } + ], + "coding": [ + { + "code": "C100275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Remembering Test Instructions" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_181", + "name": "CDISC ADAS-Cog - Spoken Language Ability", + "label": "CDISC ADAS-Cog - Spoken Language Ability", + "aliases": [ + "ADCSL", + "Spoken Language Ability", + "CDISC ADAS-Cog - Spoken Language Ability" + ], + "href": "/mdr/bc/biomedicalconcepts/C100276", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1167", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1168", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1169", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1170", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1171", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1172", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1173", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1174", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Spoken Language Ability" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_182", + "name": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "label": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "aliases": [ + "ADCDIF", + "Word Finding Difficulty in Spont Speech", + "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + ], + "href": "/mdr/bc/biomedicalconcepts/C100277", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1181", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1182", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1183", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1184", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1185", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1186", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1187", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1188", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + } + ], + "coding": [ + { + "code": "C100277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_183", + "name": "CDISC ADAS-Cog - Comprehension", + "label": "CDISC ADAS-Cog - Comprehension", + "aliases": [ + "ADCCMP", + "Comprehension", + "CDISC ADAS-Cog - Comprehension" + ], + "href": "/mdr/bc/biomedicalconcepts/C100278", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1189", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1190", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1191", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1192", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1193", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1194", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1195", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1196", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100278", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Comprehension" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_184", + "name": "CDISC ADAS-Cog - Concentration/Distractibility", + "label": "CDISC ADAS-Cog - Concentration/Distractibility", + "aliases": [ + "ADCCON", + "Concentration/Distractibility", + "CDISC ADAS-Cog - Concentration/Distractibility" + ], + "href": "/mdr/bc/biomedicalconcepts/C100279", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1197", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1198", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1199", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1200", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1201", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1202", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1203", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1204", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + } + ], + "coding": [ + { + "code": "C100279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Concentration/Distractibility" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_185", + "name": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "label": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "aliases": [ + "ADCNC", + "Number Cancellation", + "CDISC ADAS-Cog - Number Cancellation Summary Score" + ], + "href": "/mdr/bc/biomedicalconcepts/C100280", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1205", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1206", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1207", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1208", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1209", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1210", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1211", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1212", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Number Cancellation Summary Score" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_186", + "name": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "label": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "aliases": [ + "ADCMZ01", + "Executive Function Maze: Errors", + "CDISC ADAS-Cog - Executive Function Maze: Errors" + ], + "href": "/mdr/bc/biomedicalconcepts/C100285", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1213", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1214", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1215", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1216", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1217", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1218", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1219", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1220", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + } + ], + "coding": [ + { + "code": "C100285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Errors" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_187", + "name": "CDISC ADAS-Cog - Executive Function Maze: Time", + "label": "CDISC ADAS-Cog - Executive Function Maze: Time", + "aliases": [ + "ADCMZ02", + "Executive Function Maze: Time", + "CDISC ADAS-Cog - Executive Function Maze: Time" + ], + "href": "/mdr/bc/biomedicalconcepts/C100286", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1221", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1222", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1223", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1224", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1225", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1226", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1227", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1228", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1229", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + } + ], + "coding": [ + { + "code": "C100286", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Time" + } + ] + }, + { + "OID": "CONC.BiomedicalConcept_163", + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "aliases": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "href": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1230", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1231", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1232", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1233", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1234", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1235", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ], + "coding": [ + { + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator" + } + ] + } + ], + "conceptProperties": [ + { + "OID": "CONCPROP.BiomedicalConceptProperty_1", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_2", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_3", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_4", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_5", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_6", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_7", + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_8", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_9", + "name": "TIVERS", + "label": "TIVERS", + "mandatory": false, + "coding": [ + { + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version" + } + ], + "codeList": "CL.ad42d7e1" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_10", + "name": "IEORRES", + "label": "IEORRES", + "mandatory": false, + "coding": [ + { + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_11", + "name": "IEDTC", + "label": "IEDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_12", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_13", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_14", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_15", + "name": "RACE", + "label": "RACE", + "mandatory": false, + "coding": [ + { + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_16", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_17", + "name": "ETHNIC", + "label": "ETHNIC", + "mandatory": false, + "coding": [ + { + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_18", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_19", + "name": "AGE", + "label": "AGE", + "mandatory": false, + "coding": [ + { + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_20", + "name": "AGEU", + "label": "AGEU", + "mandatory": false, + "coding": [ + { + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_21", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_22", + "name": "BRTHDTC", + "label": "BRTHDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_23", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_24", + "name": "SEX", + "label": "SEX", + "mandatory": false, + "coding": [ + { + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_25", + "name": "DMDTC", + "label": "DMDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_26", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_27", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_28", + "name": "SCORRES", + "label": "SCORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_29", + "name": "SCDTC", + "label": "SCDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_30", + "name": "MHTERM", + "label": "MHTERM", + "mandatory": true, + "coding": [ + { + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_31", + "name": "MHDECOD", + "label": "MHDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_32", + "name": "MHSTDTC", + "label": "MHSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_33", + "name": "MHENDTC", + "label": "MHENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_34", + "name": "MHENRF", + "label": "MHENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_35", + "name": "MHENRTPT", + "label": "MHENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_36", + "name": "MHENTPT", + "label": "MHENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_37", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_38", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_39", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_40", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_41", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_42", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_43", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_44", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_45", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_46", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_47", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_48", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_49", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_50", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_51", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_52", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_53", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_54", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_55", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_56", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_57", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_58", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_59", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_60", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_61", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_62", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_63", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_64", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_65", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_66", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_67", + "name": "SUTRT", + "label": "SUTRT", + "mandatory": true, + "coding": [ + { + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_68", + "name": "SUPRESP", + "label": "SUPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_69", + "name": "SUOCCUR", + "label": "SUOCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_70", + "name": "SUDOSE", + "label": "SUDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_71", + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_72", + "name": "SUDOSU", + "label": "SUDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_73", + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_74", + "name": "SUSTDTC", + "label": "SUSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_75", + "name": "SUENDTC", + "label": "SUENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_76", + "name": "SUDUR", + "label": "SUDUR", + "mandatory": false, + "coding": [ + { + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_77", + "name": "SUSTRF", + "label": "SUSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_78", + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_79", + "name": "SUSTTPT", + "label": "SUSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_80", + "name": "SUENRF", + "label": "SUENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_81", + "name": "SUENRTPT", + "label": "SUENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_82", + "name": "SUENTPT", + "label": "SUENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_83", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_84", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.30a86bdd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_85", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_86", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_87", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_88", + "name": "PRLAT", + "label": "PRLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_89", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_90", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_91", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.39e500d6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_92", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_93", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_94", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_95", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_96", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_97", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_98", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_99", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_100", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_101", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_102", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_103", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_104", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_105", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_106", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_107", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_108", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_109", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_110", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_111", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.da016f8d" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_112", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_113", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_114", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_115", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_116", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_117", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_118", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_119", + "name": "EGCLSIG", + "label": "EGCLSIG", + "mandatory": false, + "coding": [ + { + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_120", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_121", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_122", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_123", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_124", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_125", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_126", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_127", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_128", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_129", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_130", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_131", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_132", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_133", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_134", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_135", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_136", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_137", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_138", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_139", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_140", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_141", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_142", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_143", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_144", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_145", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_146", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_147", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_148", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_149", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_150", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_151", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_152", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_153", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_154", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_155", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_156", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_157", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_158", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_159", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_160", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_161", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_162", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_163", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_164", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_165", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_166", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_167", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_168", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_169", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_170", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_171", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_172", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_173", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_174", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_175", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_176", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_177", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_178", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_179", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_180", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_181", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_182", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_183", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_184", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_185", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_186", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_187", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_188", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_189", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_190", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_191", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_192", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_193", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_194", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_195", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_196", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_197", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_198", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_199", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_200", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_201", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_202", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_203", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_204", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_205", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_206", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_207", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_208", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_209", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_210", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_211", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_212", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_213", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_214", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_215", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_216", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_217", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_218", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_219", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_220", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_221", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_222", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_223", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_224", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_225", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_226", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_227", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_228", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle" + } + ], + "codeList": "CL.798c8fb6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_229", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_230", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_231", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_232", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_233", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_234", + "name": "EGORRESU", + "label": "EGORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_235", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_236", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_237", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_238", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_239", + "name": "EGENDTC", + "label": "EGENDTC", + "mandatory": false, + "coding": [ + { + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_240", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_241", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_242", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_243", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_244", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_245", + "name": "EGORRES", + "label": "EGORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_246", + "name": "EGPOS", + "label": "EGPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_247", + "name": "EGMETHOD", + "label": "EGMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_248", + "name": "EGEVAL", + "label": "EGEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_249", + "name": "EGDTC", + "label": "EGDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_250", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_251", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_252", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_253", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_254", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.5ae118a0" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_255", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_256", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_257", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_258", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_259", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_260", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_261", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_262", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_263", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_264", + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_265", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_266", + "name": "CMTRT", + "label": "CMTRT", + "mandatory": true, + "coding": [ + { + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_267", + "name": "CMDECOD", + "label": "CMDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_268", + "name": "CMCLAS", + "label": "CMCLAS", + "mandatory": false, + "coding": [ + { + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_269", + "name": "CMINDC", + "label": "CMINDC", + "mandatory": false, + "coding": [ + { + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_270", + "name": "CMDOSE", + "label": "CMDOSE", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_271", + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_272", + "name": "CMDOSU", + "label": "CMDOSU", + "mandatory": false, + "coding": [ + { + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_273", + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_274", + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_275", + "name": "CMROUTE", + "label": "CMROUTE", + "mandatory": false, + "coding": [ + { + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_276", + "name": "CMSTDTC", + "label": "CMSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_277", + "name": "CMENDTC", + "label": "CMENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_278", + "name": "CMSTRF", + "label": "CMSTRF", + "mandatory": false, + "coding": [ + { + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_279", + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_280", + "name": "CMSTTPT", + "label": "CMSTTPT", + "mandatory": false, + "coding": [ + { + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_281", + "name": "CMENRF", + "label": "CMENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_282", + "name": "CMENRTPT", + "label": "CMENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_283", + "name": "CMENTPT", + "label": "CMENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_284", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_285", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_286", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_287", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_288", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_289", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_290", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_291", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_292", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_293", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_294", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_295", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_296", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_297", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_298", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_299", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_300", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_301", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_302", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_303", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_304", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_305", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume" + } + ], + "codeList": "CL.a00fe0a9" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_306", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.1aeb2034" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_307", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_308", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_309", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_310", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_311", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_312", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_313", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_314", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_315", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_316", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_317", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_318", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_319", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_320", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.2c53325c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_321", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_322", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_323", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_324", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_325", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ], + "codeList": "CL.68e5ab5a" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_326", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_327", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_328", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_329", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_330", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_331", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_332", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_333", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_334", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_335", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_336", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_337", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_338", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_339", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_340", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_341", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_342", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_343", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_344", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_345", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_346", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_347", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_348", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_349", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_350", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_351", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_352", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_353", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_354", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_355", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_356", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_357", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_358", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_359", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_360", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_361", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_362", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_363", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_364", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_365", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_366", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_367", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_368", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_369", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_370", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_371", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_372", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_373", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_374", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_375", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_376", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_377", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_378", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_379", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_380", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_381", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_382", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_383", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_384", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_385", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_386", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_387", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_388", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_389", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_390", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_391", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_392", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_393", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_394", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_395", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_396", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_397", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_398", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_399", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_400", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_401", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_402", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_403", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_404", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_405", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_406", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_407", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_408", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_419", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_420", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_421", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_422", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_423", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_429", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_430", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_431", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_432", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_433", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_439", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_440", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_441", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_442", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_443", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_449", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_450", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_451", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_452", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_453", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_459", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_460", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_461", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_462", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_463", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_469", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_470", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_471", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_472", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_473", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_480", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_481", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_482", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_483", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_484", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_495", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_496", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_497", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_498", + "name": "LBMETHOD", + "label": "LBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_499", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_500", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_506", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_507", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_508", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_509", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_510", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_516", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_517", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_518", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_519", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_520", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_526", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_527", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_528", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_529", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_530", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_535", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_536", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_537", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_538", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_539", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_545", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_546", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_547", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_548", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_549", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_555", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_556", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_557", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_558", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_564", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_565", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_566", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_567", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_568", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_574", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_575", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_576", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_577", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_578", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_584", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_585", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_586", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_587", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_588", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_592", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_593", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_594", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.bbc50609" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_595", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_596", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_606", + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "mandatory": false, + "coding": [ + { + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail" + } + ], + "codeList": "CL.c75bb752" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_607", + "name": "MBORRES", + "label": "MBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_608", + "name": "MBSPEC", + "label": "MBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_609", + "name": "MBMETHOD", + "label": "MBMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ], + "codeList": "CL.bdb73f2b" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_610", + "name": "MBDTC", + "label": "MBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_616", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_617", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_618", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_629", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_630", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_631", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_632", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_633", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_634", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_635", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_636", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_637", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_643", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_644", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_645", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_646", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_647", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_652", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_653", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_654", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_655", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_656", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_657", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_658", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_659", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.9e69169e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_660", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_661", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_667", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_668", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_669", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_670", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_671", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_676", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_677", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5fc938fc" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_678", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_679", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_684", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_685", + "name": "LBORRESU", + "label": "LBORRESU", + "mandatory": false, + "coding": [ + { + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_686", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.5183f82c" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_687", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_688", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_703", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_704", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_705", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_706", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_713", + "name": "LBORRES", + "label": "LBORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_714", + "name": "LBSPEC", + "label": "LBSPEC", + "mandatory": false, + "coding": [ + { + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type" + } + ], + "codeList": "CL.af8f8a19" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_715", + "name": "LBFAST", + "label": "LBFAST", + "mandatory": false, + "coding": [ + { + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_716", + "name": "LBDTC", + "label": "LBDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_720", + "name": "ECTRT", + "label": "ECTRT", + "mandatory": true, + "coding": [ + { + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_721", + "name": "ECREFID", + "label": "ECREFID", + "mandatory": false, + "coding": [ + { + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_722", + "name": "ECDOSE", + "label": "ECDOSE", + "mandatory": false, + "coding": [ + { + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_723", + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "mandatory": false, + "coding": [ + { + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_724", + "name": "ECDOSU", + "label": "ECDOSU", + "mandatory": false, + "coding": [ + { + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_725", + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "mandatory": false, + "coding": [ + { + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_726", + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "mandatory": false, + "coding": [ + { + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_727", + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "mandatory": false, + "coding": [ + { + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_728", + "name": "ECROUTE", + "label": "ECROUTE", + "mandatory": false, + "coding": [ + { + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_729", + "name": "ECLOC", + "label": "ECLOC", + "mandatory": false, + "coding": [ + { + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_730", + "name": "ECLAT", + "label": "ECLAT", + "mandatory": false, + "coding": [ + { + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_731", + "name": "ECDIR", + "label": "ECDIR", + "mandatory": false, + "coding": [ + { + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_732", + "name": "ECSTDTC", + "label": "ECSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_733", + "name": "ECENDTC", + "label": "ECENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_734", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_735", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_736", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_740", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_741", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_742", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_748", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_749", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_750", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_777", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_778", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_779", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_780", + "name": "QSORRES", + "label": "QSORRES", + "mandatory": false, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_781", + "name": "QSDTC", + "label": "QSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_782", + "name": "QSEVAL", + "label": "QSEVAL", + "mandatory": false, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator" + } + ], + "codeList": "CL.b8dca4b6" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_783", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_784", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_785", + "name": "AETERM", + "label": "AETERM", + "mandatory": true, + "coding": [ + { + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_786", + "name": "AEDECOD", + "label": "AEDECOD", + "mandatory": false, + "coding": [ + { + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_787", + "name": "AELOC", + "label": "AELOC", + "mandatory": false, + "coding": [ + { + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_788", + "name": "AESEV", + "label": "AESEV", + "mandatory": false, + "coding": [ + { + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_789", + "name": "AESER", + "label": "AESER", + "mandatory": false, + "coding": [ + { + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_790", + "name": "AEACN", + "label": "AEACN", + "mandatory": false, + "coding": [ + { + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_791", + "name": "AEACNOTH", + "label": "AEACNOTH", + "mandatory": false, + "coding": [ + { + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_792", + "name": "AEREL", + "label": "AEREL", + "mandatory": false, + "coding": [ + { + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_793", + "name": "AERELNST", + "label": "AERELNST", + "mandatory": false, + "coding": [ + { + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_794", + "name": "AEPATT", + "label": "AEPATT", + "mandatory": false, + "coding": [ + { + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_795", + "name": "AEOUT", + "label": "AEOUT", + "mandatory": false, + "coding": [ + { + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_796", + "name": "AESCAN", + "label": "AESCAN", + "mandatory": false, + "coding": [ + { + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_797", + "name": "AESCONG", + "label": "AESCONG", + "mandatory": false, + "coding": [ + { + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_798", + "name": "AESDISAB", + "label": "AESDISAB", + "mandatory": false, + "coding": [ + { + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_799", + "name": "AESDTH", + "label": "AESDTH", + "mandatory": false, + "coding": [ + { + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_800", + "name": "AESHOSP", + "label": "AESHOSP", + "mandatory": false, + "coding": [ + { + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_801", + "name": "AESLIFE", + "label": "AESLIFE", + "mandatory": false, + "coding": [ + { + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_802", + "name": "AESOD", + "label": "AESOD", + "mandatory": false, + "coding": [ + { + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_803", + "name": "AESMIE", + "label": "AESMIE", + "mandatory": false, + "coding": [ + { + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_804", + "name": "AECONTRT", + "label": "AECONTRT", + "mandatory": false, + "coding": [ + { + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_805", + "name": "AETOXGR", + "label": "AETOXGR", + "mandatory": false, + "coding": [ + { + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_806", + "name": "AESTDTC", + "label": "AESTDTC", + "mandatory": false, + "coding": [ + { + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_807", + "name": "AEENDTC", + "label": "AEENDTC", + "mandatory": false, + "coding": [ + { + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_808", + "name": "AEENRF", + "label": "AEENRF", + "mandatory": false, + "coding": [ + { + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_809", + "name": "AEENRTPT", + "label": "AEENRTPT", + "mandatory": false, + "coding": [ + { + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_810", + "name": "AEENTPT", + "label": "AEENTPT", + "mandatory": false, + "coding": [ + { + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_811", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.d8fccc32" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_812", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_813", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_823", + "name": "DSDECOD", + "label": "DSDECOD", + "mandatory": true, + "coding": [ + { + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term" + } + ], + "codeList": "CL.a3e2e2db" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_824", + "name": "DSTERM", + "label": "DSTERM", + "mandatory": true, + "coding": [ + { + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_825", + "name": "DSSTDTC", + "label": "DSSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_832", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_833", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_834", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_835", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_836", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_837", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_862", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_863", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_864", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_865", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_866", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_867", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_880", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_881", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_882", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_883", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_884", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_885", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_886", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_887", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_888", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_889", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_890", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_891", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_892", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_893", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure" + } + ], + "codeList": "CL.7cfd6cc5" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_894", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_895", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_896", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_897", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_898", + "name": "VSORRES", + "label": "VSORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_899", + "name": "VSORRESU", + "label": "VSORRESU", + "mandatory": false, + "coding": [ + { + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute" + } + ], + "codeList": "CL.20024ecd" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_900", + "name": "VSPOS", + "label": "VSPOS", + "mandatory": false, + "coding": [ + { + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_901", + "name": "VSLOC", + "label": "VSLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_902", + "name": "VSLAT", + "label": "VSLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_903", + "name": "VSDTC", + "label": "VSDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_920", + "name": "MKORRES", + "label": "MKORRES", + "mandatory": false, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_921", + "name": "MKORRESU", + "label": "MKORRESU", + "mandatory": false, + "coding": [ + { + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_922", + "name": "MKLOC", + "label": "MKLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_923", + "name": "MKLAT", + "label": "MKLAT", + "mandatory": false, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_924", + "name": "MKMETHOD", + "label": "MKMETHOD", + "mandatory": false, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_925", + "name": "MKDTC", + "label": "MKDTC", + "mandatory": false, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_933", + "name": "Observation Result", + "label": "Observation Result", + "mandatory": true, + "coding": [ + { + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_934", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_935", + "name": "Anatomic Site", + "label": "Anatomic Site", + "mandatory": true, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_936", + "name": "Laterality", + "label": "Laterality", + "mandatory": true, + "coding": [ + { + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_937", + "name": "Test Method", + "label": "Test Method", + "mandatory": true, + "coding": [ + { + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_938", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_949", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_950", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_951", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_952", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_953", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_954", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_955", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_956", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_957", + "name": "Test Occurrence", + "label": "Test Occurrence", + "mandatory": true, + "coding": [ + { + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_974", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_975", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.35f151cb" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_976", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_977", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_978", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site" + } + ], + "codeList": "CL.bfc80e1f" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_979", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_980", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_997", + "name": "PRTRT", + "label": "PRTRT", + "mandatory": true, + "coding": [ + { + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_998", + "name": "PRDECOD", + "label": "PRDECOD", + "mandatory": true, + "coding": [ + { + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure" + } + ], + "codeList": "CL.6751dc8e" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_999", + "name": "PRPRESP", + "label": "PRPRESP", + "mandatory": false, + "coding": [ + { + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1000", + "name": "PROCCUR", + "label": "PROCCUR", + "mandatory": false, + "coding": [ + { + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1001", + "name": "PRLOC", + "label": "PRLOC", + "mandatory": false, + "coding": [ + { + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1002", + "name": "PRSTDTC", + "label": "PRSTDTC", + "mandatory": false, + "coding": [ + { + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1003", + "name": "PRENDTC", + "label": "PRENDTC", + "mandatory": false, + "coding": [ + { + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1012", + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "mandatory": true, + "coding": [ + { + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1013", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1022", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1023", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1024", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1025", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1026", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1027", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1028", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1029", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1030", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1031", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1032", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1033", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1034", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1035", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1036", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1037", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1046", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1047", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1048", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1049", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1050", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1051", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1052", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1053", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1062", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1063", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1064", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1065", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1066", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1067", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1068", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1069", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1078", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1079", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1080", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1081", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1082", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1083", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1084", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1085", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1094", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1095", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1096", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1097", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1098", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1099", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1100", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1101", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1110", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1111", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1112", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1113", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1114", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1115", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1116", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1117", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1126", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1127", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1128", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1129", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1130", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1131", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1132", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1133", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1142", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1143", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1144", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1145", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1146", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1147", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1148", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1149", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1167", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1168", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1169", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1170", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1171", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1172", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1173", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1174", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1181", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1182", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1183", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1184", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1185", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1186", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1187", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1188", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1189", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1190", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1191", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1192", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1193", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1194", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1195", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1196", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1197", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1198", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1199", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1200", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1201", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1202", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1203", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1204", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1205", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1206", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1207", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1208", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1209", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1210", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1211", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1212", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1213", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1214", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1215", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1216", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1217", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1218", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1219", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1220", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1221", + "name": "Ordinal Position", + "label": "Ordinal Position", + "mandatory": true, + "coding": [ + { + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1222", + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "mandatory": true, + "coding": [ + { + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1223", + "name": "Unit of Time", + "label": "Unit of Time", + "mandatory": true, + "coding": [ + { + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1224", + "name": "Category", + "label": "Category", + "mandatory": true, + "coding": [ + { + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1225", + "name": "Subcategory", + "label": "Subcategory", + "mandatory": true, + "coding": [ + { + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1226", + "name": "Completion Status", + "label": "Completion Status", + "mandatory": true, + "coding": [ + { + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1227", + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "mandatory": true, + "coding": [ + { + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1228", + "name": "Evaluator", + "label": "Evaluator", + "mandatory": true, + "coding": [ + { + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1229", + "name": "Collection Date Time", + "label": "Collection Date Time", + "mandatory": true, + "coding": [ + { + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1230", + "name": "TSPARMCD", + "label": "TSPARMCD", + "mandatory": false, + "coding": [ + { + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1231", + "name": "TSPARM", + "label": "TSPARM", + "mandatory": false, + "coding": [ + { + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter" + } + ], + "codeList": "CL.1e00cfce" + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1232", + "name": "TSVAL", + "label": "TSVAL", + "mandatory": false, + "coding": [ + { + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1233", + "name": "TSVALCD", + "label": "TSVALCD", + "mandatory": false, + "coding": [ + { + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1234", + "name": "TSVCDREF", + "label": "TSVCDREF", + "mandatory": false, + "coding": [ + { + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology" + } + ] + }, + { + "OID": "CONCPROP.BiomedicalConceptProperty_1235", + "name": "TSVCDVER", + "label": "TSVCDVER", + "mandatory": false, + "coding": [ + { + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology" + } + ] + } + ] +} diff --git a/output/json/NCT12345678-latest.json b/output/json/NCT12345678-latest.json new file mode 100644 index 0000000..acffcfe --- /dev/null +++ b/output/json/NCT12345678-latest.json @@ -0,0 +1,33031 @@ +{ + "study": { + "id": "Study_3", + "extensionAttributes": [], + "name": "NCT12345678", + "description": "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", + "label": "CDISC Pilot LZZT", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_153", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_154", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_155", + "url": "tool-version", + "valueString": "pi-fix-bc-props-specs-in-usdm", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_156", + "url": "usdm-creation-date", + "valueString": "20260716T11:24", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "H2Q-MC-LZZT", + "label": "CDISC Pilot LZZT", + "description": "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", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_55", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_84", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_164", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_17", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_18", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_2", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_85", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_165", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_19", + "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": "DOSE", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_86", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_166", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_20", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_21", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_5", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_87", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_167", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_88", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_168", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_60", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_89", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_169", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_61", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_90", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_170", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_92", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_171", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_94", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_172", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_67", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_96", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_173", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_98", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_174", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_70", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": null, + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_175", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_22", + "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": "Informed consent activity", + "previousId": null, + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "Inclusion/Exclusion Criteria", + "label": "Inclusion/Exclusion Criteria", + "description": "Inclusion/Exclusion Criteria activity", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "Patient number assigned", + "label": "Patient Number assigned", + "description": "Patient Number assigned activity", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "Demographics", + "label": "Demographics", + "description": "Demographics activity", + "previousId": "Activity_3", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6", + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "Education", + "label": "Education", + "description": "Education activity", + "previousId": "Activity_4", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_11", + "BiomedicalConcept_12" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "Hachinski", + "label": "Hachinski", + "description": "Hachinski test", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_10", + "BiomedicalConceptSurrogate_11", + "BiomedicalConceptSurrogate_12", + "BiomedicalConceptSurrogate_13", + "BiomedicalConceptSurrogate_14", + "BiomedicalConceptSurrogate_15", + "BiomedicalConceptSurrogate_16", + "BiomedicalConceptSurrogate_17", + "BiomedicalConceptSurrogate_18", + "BiomedicalConceptSurrogate_9" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "MMSE test", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24", + "BiomedicalConceptSurrogate_25", + "BiomedicalConceptSurrogate_26" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "Physical examination", + "label": "Physical examination", + "description": "Physical examination results", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_159", + "BiomedicalConcept_160", + "BiomedicalConcept_161" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "Medical History", + "label": "Medical History", + "description": "Medical History response", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "Habits", + "label": "Habits", + "description": "List of habits", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_15", + "BiomedicalConcept_16", + "BiomedicalConcept_17" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "Chest X-ray", + "label": "Chest X-ray", + "description": "Chest X-ray result", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "Apo E genotyping", + "label": "Apo E genotyping", + "description": "Apo E genotyping test", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "Patient randomised", + "label": "Patient randomized", + "description": "Patient randomized activity", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "Vital Signs", + "label": "Vital Signs", + "description": "Vital Signs result", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_23", + "BiomedicalConcept_24", + "BiomedicalConcept_25", + "BiomedicalConcept_26" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "Ambulatory ECG placed", + "label": "Ambulatory ECG placed", + "description": "Ambulatory ECG placed activity", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_162" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "Ambulatory ECG removed", + "label": "Ambulatory ECG removed", + "description": "Ambulatory ECG removed activity", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_163" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG", + "description": "ECG results", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_27", + "BiomedicalConcept_28", + "BiomedicalConcept_29", + "BiomedicalConcept_30", + "BiomedicalConcept_31", + "BiomedicalConcept_32", + "BiomedicalConcept_33", + "BiomedicalConcept_34", + "BiomedicalConcept_35", + "BiomedicalConcept_36", + "BiomedicalConcept_37", + "BiomedicalConcept_38", + "BiomedicalConcept_39", + "BiomedicalConcept_40", + "BiomedicalConcept_41", + "BiomedicalConcept_42", + "BiomedicalConcept_43", + "BiomedicalConcept_44", + "BiomedicalConcept_45", + "BiomedicalConcept_46", + "BiomedicalConcept_47", + "BiomedicalConcept_48", + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "Placebo TTS Test", + "label": "Placebo TTS Test", + "description": "Placebo TTS Test results", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_164" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "CT Scan", + "label": "CT Scan", + "description": "CT Scan results", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "MRI", + "label": "MRI", + "description": "MRI results", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "MRI, CT Scan", + "label": "MRI, CT Scan", + "description": "MRI, CT Scan results", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_165", + "BiomedicalConcept_166" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "Concomitant medications", + "label": "Concomitant medications", + "description": "Concomitant medications information", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_54", + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "Hematology", + "label": "Hematology", + "description": "Hematology results", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59", + "BiomedicalConcept_60", + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72", + "BiomedicalConcept_73" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "Chemistry", + "label": "Chemistry", + "description": "Chemistry test results", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77", + "BiomedicalConcept_78", + "BiomedicalConcept_79", + "BiomedicalConcept_80", + "BiomedicalConcept_81", + "BiomedicalConcept_82", + "BiomedicalConcept_83", + "BiomedicalConcept_84", + "BiomedicalConcept_85", + "BiomedicalConcept_86", + "BiomedicalConcept_87", + "BiomedicalConcept_88", + "BiomedicalConcept_89", + "BiomedicalConcept_90", + "BiomedicalConcept_91", + "BiomedicalConcept_92", + "BiomedicalConcept_93", + "BiomedicalConcept_94", + "BiomedicalConcept_95", + "BiomedicalConcept_96", + "BiomedicalConcept_97", + "BiomedicalConcept_98", + "BiomedicalConcept_99", + "BiomedicalConcept_100" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "Urinalysis", + "label": "Urinalysis", + "description": "Urinalysis results", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_101", + "BiomedicalConcept_102", + "BiomedicalConcept_103", + "BiomedicalConcept_104", + "BiomedicalConcept_105", + "BiomedicalConcept_106", + "BiomedicalConcept_107", + "BiomedicalConcept_108", + "BiomedicalConcept_109" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "Plasma Specimen (Xanomeline)", + "label": "Plasma Specimen (Xanomeline)", + "description": "Plasma Specimen (Xanomeline) results", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "Hemoglobin A1C", + "label": "Hemoglobin A1C", + "description": "Hemoglobin A1C results", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_110", + "BiomedicalConcept_111" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "Study Drug", + "label": "Study Drug", + "description": "Study Drug activity", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_112" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "description": "TTS Acceptability Survey results", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_113", + "BiomedicalConcept_114", + "BiomedicalConcept_115", + "BiomedicalConcept_116", + "BiomedicalConcept_117" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "ADAS-Cog", + "label": "ADAS-Cog", + "description": "ADAS-Cog results", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_172", + "BiomedicalConcept_173", + "BiomedicalConcept_174", + "BiomedicalConcept_175", + "BiomedicalConcept_176", + "BiomedicalConcept_177", + "BiomedicalConcept_178", + "BiomedicalConcept_179", + "BiomedicalConcept_180", + "BiomedicalConcept_181", + "BiomedicalConcept_182", + "BiomedicalConcept_183", + "BiomedicalConcept_184", + "BiomedicalConcept_185", + "BiomedicalConcept_186", + "BiomedicalConcept_187" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "CIBIC+", + "label": "CIBIC+", + "description": "CIBIC+ results", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_27" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "DAD", + "label": "DAD", + "description": "DAD results", + "previousId": "Activity_31", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_28" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "NPI-X", + "label": "NPI-X", + "description": "NPI-X results", + "previousId": "Activity_32", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_29", + "BiomedicalConceptSurrogate_30", + "BiomedicalConceptSurrogate_31", + "BiomedicalConceptSurrogate_32", + "BiomedicalConceptSurrogate_33", + "BiomedicalConceptSurrogate_34" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "Adverse Events", + "label": "Adverse Events", + "description": "Activities to conduct if occurence of Adverse Event", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_134", + "BiomedicalConcept_135" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "Check Adverse Events", + "label": "Check Adverse Events", + "description": "TL: Adverse Event Timeline", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_170", + "BiomedicalConcept_171" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "Patient Summary", + "label": "Patient Summary", + "description": "Patient Summary (Study Conclusion)", + "previousId": "Activity_35", + "nextId": "Activity_37", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_136", + "BiomedicalConcept_137", + "BiomedicalConcept_138", + "BiomedicalConcept_139", + "BiomedicalConcept_140", + "BiomedicalConcept_141", + "BiomedicalConcept_142", + "BiomedicalConcept_143", + "BiomedicalConcept_144", + "BiomedicalConcept_145", + "BiomedicalConcept_146", + "BiomedicalConcept_147", + "BiomedicalConcept_148", + "BiomedicalConcept_149", + "BiomedicalConcept_150", + "BiomedicalConcept_151", + "BiomedicalConcept_152" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_37", + "extensionAttributes": [], + "name": "Supine", + "label": "Supine", + "description": "Supine", + "previousId": "Activity_36", + "nextId": "Activity_38", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_168" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_38", + "extensionAttributes": [], + "name": "Vital Signs Supine", + "label": "Vital Signs Supine", + "description": "Vital Signs Supine", + "previousId": "Activity_37", + "nextId": "Activity_39", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_153", + "BiomedicalConcept_154", + "BiomedicalConcept_155" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_39", + "extensionAttributes": [], + "name": "Stand", + "label": "Stand", + "description": "Stand", + "previousId": "Activity_38", + "nextId": "Activity_40", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_169" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_40", + "extensionAttributes": [], + "name": "Vital Signs Standing", + "label": "Vital Signs Standing", + "description": "Vital Signs Standing", + "previousId": "Activity_39", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_156", + "BiomedicalConcept_157", + "BiomedicalConcept_158" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo ARM", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 low dose", + "type": { + "id": "Code_3", + "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_4", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 high dose", + "type": { + "id": "Code_5", + "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_6", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_3", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "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_3", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_16", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_17", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_18", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_19", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_20", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment 1", + "description": "Treatment 1 Epoch", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment 2", + "description": "Treatment 2 Epoch", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment 3", + "description": "Treatment 3 Epoch", + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Follow-up", + "label": "Follow-up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_5", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_23", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_24", + "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_27", + "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_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_28", + "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_29", + "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_30", + "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_31", + "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" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow up Element", + "transitionStartRule": { + "id": "TransitionRule_25", + "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_26", + "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" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand 1", + "label": "Estimand 1", + "description": "Estimand 1", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Disruption", + "label": "Disruption", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "strategy": "Treatment Policy. Continue to measure effect of treatment assignment regardless of interruption.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Indication 1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36968", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "Indication 2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36969", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "2018-01-31", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_1" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "Objective 1", + "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": [], + "level": { + "id": "Code_2508", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "ENDPT1", + "label": "Endpoint 1", + "description": "ADAS-Cog Week 24 Endpoint", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2514", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "ENDPT2", + "label": "Endpoint 2", + "description": "Clinician Week 24 impression of change", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2515", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "Objective 2", + "description": "Safety", + "text": "To document the safety profile of the xanomeline TTS.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2509", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "ENDPT3", + "label": "Endpoint 3", + "description": "Adverse events", + "text": "Adverse events", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2516", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "ENDPT4", + "label": "Endpoint 4", + "description": "Vital Signs", + "text": "Vital signs (weight, standing and supine blood pressure, heart rate)", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2517", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "ENDPT5", + "label": "Endpoint 5", + "description": "Baseline", + "text": "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": [], + "purpose": "", + "level": { + "id": "Code_2518", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "Objective 3", + "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": [], + "level": { + "id": "Code_2510", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "ENDPT6", + "label": "Endpoint 6", + "description": "Cognitive Scale", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2519", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "ENDPT7", + "label": "Endpoint 7", + "description": "Clinician impression at Week8 and Week16", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2520", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "ENDPT8", + "label": "Endpoint 8", + "description": "NPI-X", + "text": "Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2521", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "Objective 4", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2511", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "ENDPT9", + "label": "Endpoint 9", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2522", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "Objective 5", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2512", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "ENDPT10", + "label": "Endpoint 10", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2523", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "Objective 6", + "description": "Response", + "text": "To assess the treatment response as a function of Apo E genotype.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2513", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "ENDPT11", + "label": "Endpoint 11", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2524", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "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_1", + "exits": [], + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2W", + "valueLabel": "2 Weeks Before Dose", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2D", + "valueLabel": "2 Days Before Dose", + "relativeToFrom": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing Anchor", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_25", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_30", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_31", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_34", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_35", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 Timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 Timing", + "type": { + "id": "Code_38", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_39", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 Timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 Timing", + "type": { + "id": "Code_42", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_43", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_25", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 Timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_26", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 Home Timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 Home Timing", + "type": { + "id": "Code_48", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_49", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 Home Timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 Home Timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_23", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen 1", + "description": "Screen 1 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_2", + "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_11", + "Activity_14", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_27", + "Activity_31", + "Activity_32", + "Activity_30", + "Activity_33" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen 2", + "description": "Screen 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_15", + "Activity_33" + ], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "Dose Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_14", + "Activity_16", + "Activity_22", + "Activity_28", + "Activity_26", + "Activity_30", + "Activity_31", + "Activity_32", + "Activity_33" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Week 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_14", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_28", + "Activity_17", + "Activity_24", + "Activity_33" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Week 4 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Week 6 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Week 8 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "WEEK8N", + "label": "Week 8 NPI", + "description": "Week 8 NPI Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Week 12", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WEEK12N", + "label": "Week 12 NPI", + "description": "Week 12 NPI", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Week 16", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WEEK16N", + "label": "Week 16 NPI", + "description": "Week 16 NPI", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Week 20", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WEEK20N", + "label": "Week 20 NPI", + "description": "Week 20 NPI", + "defaultConditionId": "ScheduledActivityInstance_25", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_25", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Week 24", + "defaultConditionId": "ScheduledActivityInstance_26", + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_28", + "Activity_30", + "Activity_32", + "Activity_31" + ], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_26", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Week 26", + "defaultConditionId": null, + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_28", + "Activity_29" + ], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "testDecisionInstance", + "label": "testDecisionInstance", + "description": "testDecisionInstance", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "is not null", + "conditionTargetId": "ScheduledActivityInstance_3", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "test_2", + "label": "test_2", + "description": "test_2", + "defaultConditionId": "blahblahblah", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + }, + { + "id": "ScheduledDecisionInstance_3", + "extensionAttributes": [], + "name": "test3", + "label": "test3", + "description": "test3", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_6", + "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_11", + "exits": [], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event Timing", + "type": { + "id": "Code_105", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_106", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "AE", + "label": "Adverse Event", + "description": "Occurrence of Adverse Event", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_7", + "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_12", + "exits": [], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination Timing", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_108", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "Early Termination", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_8", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_13", + "exits": [], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "VS Supine", + "type": { + "id": "Code_109", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_111", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_112", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_114", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_115", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_117", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_118", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_119", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "VS 5 minute supine", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "VS Vital signs supine", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "VS 1 minute standing", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "VS Vital signs after 1 min standing", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "VS 2 minute standing", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "VS Vital signs after 3 min standing", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT - Pilot", + "type": { + "id": "Code_27557", + "extensionAttributes": [], + "code": "C207646", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_27601", + "extensionAttributes": [], + "code": "C207615", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_27813", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [], + "dateValues": [], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "notes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "First amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_2525", + "extensionAttributes": [], + "code": "C207605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_2526", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "OTHER", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_2", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "Change 1", + "description": "Typographical errors lead to ambiguity when interpreting Inclusion Criteria", + "summary": "Fixed inclusion criteria text", + "rationale": "Subject safety", + "changedSections": [ + { + "id": "DocumentContentReference_2", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "notes": [], + "type": { + "id": "Code_2527", + "extensionAttributes": [], + "code": "C215665", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Enhance subject safety", + "isSubstantial": false, + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + }, + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "Enrollment 1", + "label": null, + "description": null, + "quantity": { + "id": "SubjectEnrollment_1_Qty", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "Protocol Approval", + "label": null, + "description": null, + "type": { + "id": "Code_13051", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "instanceType": "StudyAmendment" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "identifier": "00-642-1325", + "identifierScheme": "DUNS", + "type": { + "id": "Code_28637", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": [ + "Lilly Corporate Ctr" + ], + "city": "Indianapolis", + "district": null, + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_28638", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "identifier": "CT-GOV", + "identifierScheme": "USGOV", + "type": { + "id": "Code_28639", + "extensionAttributes": [], + "code": "C142578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Independent Data Monitoring Committee", + "instanceType": "Code" + }, + "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_28640", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "MLM Medical Labs", + "label": "Central Labu", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_39641", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_39642", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Role 1", + "label": "Sponsor", + "description": "Study Sponsor", + "code": { + "id": "Code_35642", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Laboratory Contact", + "label": "Lab Primary Contact", + "description": "The primary person to contact at the Central Lab", + "code": { + "id": "Code_40467", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_3" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "John Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "John" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "PhD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_36026", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_36027", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 1.0, + "unit": { + "id": "AliasCode_30645", + "extensionAttributes": [], + "standardCode": { + "id": "Code_36028", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_36144", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_126", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": null, + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3021", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_42410", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_37997", + "standardCode": { + "id": "Code_45284", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_37998", + "standardCode": { + "id": "Code_45285", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_37999", + "standardCode": { + "id": "Code_45286", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3361", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_127", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Inclusion Criteria", + "label": "Inclusion Criteria", + "synonyms": [ + "Inclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25532", + "properties": [ + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38000", + "standardCode": { + "id": "Code_45287", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38001", + "standardCode": { + "id": "Code_45288", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38002", + "standardCode": { + "id": "Code_45289", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24523", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "synonyms": [ + "Inclusion Exclusion Criteria Yes No Indicator", + "IEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83063", + "properties": [ + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38003", + "standardCode": { + "id": "Code_45290", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38004", + "standardCode": { + "id": "Code_45291", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31819", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38143", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exclusion Criteria", + "label": "Exclusion Criteria", + "synonyms": [ + "Exclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25370", + "properties": [ + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_2841", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_40605", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38005", + "standardCode": { + "id": "Code_45292", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38006", + "standardCode": { + "id": "Code_45293", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38007", + "standardCode": { + "id": "Code_45294", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3363", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": "Subject is Randomized", + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3022", + "instanceType": "ResponseCode", + "name": "RANDOMIZED", + "label": "RANDOMIZED", + "isEnabled": true, + "code": { + "id": "Code_45298", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38010", + "standardCode": { + "id": "Code_45297", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38012", + "standardCode": { + "id": "Code_45299", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38013", + "standardCode": { + "id": "Code_45300", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_125", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RACE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Race", + "label": "Race", + "synonyms": [ + "Racial Group" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "RACE", + "label": "RACE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38014", + "standardCode": { + "id": "Code_45301", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38015", + "standardCode": { + "id": "Code_45302", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31820", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38144", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ETHNIC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ethnic Group", + "label": "Ethnic Group", + "synonyms": [ + "Ethnicity", + "Ethnic Origin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16564", + "properties": [ + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "ETHNIC", + "label": "ETHNIC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38016", + "standardCode": { + "id": "Code_45303", + "extensionAttributes": [], + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38017", + "standardCode": { + "id": "Code_45304", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31821", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38145", + "extensionAttributes": [], + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Ethnic Group", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject Age", + "label": "Subject Age", + "synonyms": [ + "Age" + ], + "reference": "/mdr/bc/biomedicalconcepts/C69260", + "properties": [ + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AGE", + "label": "AGE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38018", + "standardCode": { + "id": "Code_45305", + "extensionAttributes": [], + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AGEU", + "label": "AGEU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38019", + "standardCode": { + "id": "Code_45306", + "extensionAttributes": [], + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38020", + "standardCode": { + "id": "Code_45307", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24524", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28642", + "extensionAttributes": [], + "code": "C69260", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Subject Age", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BRTHDTC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Birth Date and Time", + "label": "Birth Date and Time", + "synonyms": [ + "BRTHDTC", + "Date/Time of Birth" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83217", + "properties": [ + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "BRTHDTC", + "label": "BRTHDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38021", + "standardCode": { + "id": "Code_45308", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38022", + "standardCode": { + "id": "Code_45309", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3365", + "extensionAttributes": [], + "code": "C83217", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Birth Date and Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SEX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sex", + "label": null, + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "SEX", + "label": "SEX", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38023", + "standardCode": { + "id": "Code_45310", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38024", + "standardCode": { + "id": "Code_45311", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24525", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28643", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDULEVEL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Education Level", + "label": "Education Level", + "synonyms": [ + "EDULEVEL", + "Education", + "Education Level", + "Education Level Completed", + "education_level", + "Educational Attainment", + "Educational Level", + "Level of Education Attained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17953", + "properties": [ + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "SCORRES", + "label": "SCORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38025", + "standardCode": { + "id": "Code_45312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "SCDTC", + "label": "SCDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38026", + "standardCode": { + "id": "Code_45313", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24526", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28644", + "extensionAttributes": [], + "code": "C17953", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Education Level", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDUYRNUM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Number of Years of Education", + "label": "Number of Years of Education", + "synonyms": [ + "EDUYRNUM", + "Number of Years of Education" + ], + "reference": "/mdr/bc/biomedicalconcepts/C122393", + "properties": [ + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "SCORRES", + "label": "SCORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38027", + "standardCode": { + "id": "Code_45314", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "SCDTC", + "label": "SCDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38028", + "standardCode": { + "id": "Code_45315", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24527", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28645", + "extensionAttributes": [], + "code": "C122393", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Number of Years of Education", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_123", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MEDHISTFREE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_124", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHALZHEIMERS", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_128", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHVISUALHALLUCINATIONS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Medical History", + "label": "Solicited Medical History", + "synonyms": [ + "Medical History", + "Medical History Collection" + ], + "reference": "/mdr/bc/biomedicalconcepts/C200145", + "properties": [ + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "MHTERM", + "label": "MHTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38029", + "standardCode": { + "id": "Code_45316", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "MHDECOD", + "label": "MHDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38030", + "standardCode": { + "id": "Code_45317", + "extensionAttributes": [], + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "MHSTDTC", + "label": "MHSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38031", + "standardCode": { + "id": "Code_45318", + "extensionAttributes": [], + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "MHENDTC", + "label": "MHENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38032", + "standardCode": { + "id": "Code_45319", + "extensionAttributes": [], + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "MHENRF", + "label": "MHENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38033", + "standardCode": { + "id": "Code_45320", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "MHENRTPT", + "label": "MHENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38034", + "standardCode": { + "id": "Code_45321", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "MHENTPT", + "label": "MHENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38035", + "standardCode": { + "id": "Code_45322", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3366", + "extensionAttributes": [], + "code": "C200145", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Medical History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_134", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALCOHOLHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alcohol Use History", + "label": "Alcohol Use History", + "synonyms": [ + "Alcohol History", + "Alcohol Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81229", + "properties": [ + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38036", + "standardCode": { + "id": "Code_45323", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38037", + "standardCode": { + "id": "Code_45324", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38038", + "standardCode": { + "id": "Code_45325", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38039", + "standardCode": { + "id": "Code_45326", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38040", + "standardCode": { + "id": "Code_45327", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38041", + "standardCode": { + "id": "Code_45328", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38042", + "standardCode": { + "id": "Code_45329", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38043", + "standardCode": { + "id": "Code_45330", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38044", + "standardCode": { + "id": "Code_45331", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38045", + "standardCode": { + "id": "Code_45332", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38046", + "standardCode": { + "id": "Code_45333", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38047", + "standardCode": { + "id": "Code_45334", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38048", + "standardCode": { + "id": "Code_45335", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38049", + "standardCode": { + "id": "Code_45336", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38050", + "standardCode": { + "id": "Code_45337", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24528", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28646", + "extensionAttributes": [], + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alcohol Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_135", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CAFFEINEHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Caffeine Use History", + "label": "Caffeine Use History", + "synonyms": [ + "Caffeine History", + "Caffeine Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C201990", + "properties": [ + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38051", + "standardCode": { + "id": "Code_45338", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38052", + "standardCode": { + "id": "Code_45339", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38053", + "standardCode": { + "id": "Code_45340", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38054", + "standardCode": { + "id": "Code_45341", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38055", + "standardCode": { + "id": "Code_45342", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38056", + "standardCode": { + "id": "Code_45343", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38057", + "standardCode": { + "id": "Code_45344", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38058", + "standardCode": { + "id": "Code_45345", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38059", + "standardCode": { + "id": "Code_45346", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38060", + "standardCode": { + "id": "Code_45347", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38061", + "standardCode": { + "id": "Code_45348", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38062", + "standardCode": { + "id": "Code_45349", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38063", + "standardCode": { + "id": "Code_45350", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38064", + "standardCode": { + "id": "Code_45351", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38065", + "standardCode": { + "id": "Code_45352", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3367", + "extensionAttributes": [], + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Caffeine Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_130", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_131", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARETTEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_132", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PIPEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_133", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TOBACCOHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "History of Tobacco Use", + "label": "History of Tobacco Use", + "synonyms": [ + "Tobacco Use", + "Tobacco Use History" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181760", + "properties": [ + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38066", + "standardCode": { + "id": "Code_45353", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38067", + "standardCode": { + "id": "Code_45354", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38068", + "standardCode": { + "id": "Code_45355", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38069", + "standardCode": { + "id": "Code_45356", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38070", + "standardCode": { + "id": "Code_45357", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38071", + "standardCode": { + "id": "Code_45358", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38072", + "standardCode": { + "id": "Code_45359", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38073", + "standardCode": { + "id": "Code_45360", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38074", + "standardCode": { + "id": "Code_45361", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "SUDUR", + "label": "SUDUR", + "isRequired": false, + "isEnabled": true, + "datatype": "durationDatetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38075", + "standardCode": { + "id": "Code_45362", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38076", + "standardCode": { + "id": "Code_45363", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38077", + "standardCode": { + "id": "Code_45364", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38078", + "standardCode": { + "id": "Code_45365", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38079", + "standardCode": { + "id": "Code_45366", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38080", + "standardCode": { + "id": "Code_45367", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38081", + "standardCode": { + "id": "Code_45368", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3368", + "extensionAttributes": [], + "code": "C181760", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "History of Tobacco Use", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_136", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAY", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_137", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAYCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "X-Ray Imaging", + "label": "X-Ray Imaging", + "synonyms": [ + "Conventional X-Ray", + "Medical Imaging", + "X-Ray", + "Static X-Ray" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38101", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38082", + "standardCode": { + "id": "Code_45369", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3023", + "instanceType": "ResponseCode", + "name": "X-RAY", + "label": "X-RAY", + "isEnabled": true, + "code": { + "id": "Code_45371", + "extensionAttributes": [], + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "X-RAY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38083", + "standardCode": { + "id": "Code_45370", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38085", + "standardCode": { + "id": "Code_45372", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38086", + "standardCode": { + "id": "Code_45373", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38087", + "standardCode": { + "id": "Code_45374", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "PRLAT", + "label": "PRLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38088", + "standardCode": { + "id": "Code_45375", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38089", + "standardCode": { + "id": "Code_45376", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38090", + "standardCode": { + "id": "Code_45377", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_38008", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45295", + "extensionAttributes": [], + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "X-Ray Imaging", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_138", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": null, + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3024", + "instanceType": "ResponseCode", + "name": "RANDOMIZED", + "label": "RANDOMIZED", + "isEnabled": true, + "code": { + "id": "Code_45379", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38091", + "standardCode": { + "id": "Code_45378", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38093", + "standardCode": { + "id": "Code_45380", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38094", + "standardCode": { + "id": "Code_45381", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_145", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/TEMP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38095", + "standardCode": { + "id": "Code_45382", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38096", + "standardCode": { + "id": "Code_45383", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38097", + "standardCode": { + "id": "Code_45384", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38098", + "standardCode": { + "id": "Code_45385", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2640", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2850", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_146", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/WEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38099", + "standardCode": { + "id": "Code_45386", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38100", + "standardCode": { + "id": "Code_45387", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38101", + "standardCode": { + "id": "Code_45388", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3371", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_147", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/HEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Height", + "label": "Body Height", + "synonyms": [ + "HEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C164634", + "properties": [ + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38102", + "standardCode": { + "id": "Code_45389", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38103", + "standardCode": { + "id": "Code_45390", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38104", + "standardCode": { + "id": "Code_45391", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24529", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28647", + "extensionAttributes": [], + "code": "C164634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PULSE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_148", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/PULSE_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pulse Rate", + "label": "Pulse Rate", + "synonyms": [ + "Pulse" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49676", + "properties": [ + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38105", + "standardCode": { + "id": "Code_45392", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3025", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_45394", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38106", + "standardCode": { + "id": "Code_45393", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38108", + "standardCode": { + "id": "Code_45395", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38109", + "standardCode": { + "id": "Code_45396", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38110", + "standardCode": { + "id": "Code_45397", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38111", + "standardCode": { + "id": "Code_45398", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2664", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2874", + "extensionAttributes": [], + "code": "C49676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RESP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_149", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/RESP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Respiratory Rate", + "label": "Respiratory Rate", + "synonyms": [ + "RESP", + "RESPRATE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49678", + "properties": [ + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38112", + "standardCode": { + "id": "Code_45399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3026", + "instanceType": "ResponseCode", + "name": "breaths/min", + "label": "breaths/min", + "isEnabled": true, + "code": { + "id": "Code_45401", + "extensionAttributes": [], + "code": "C49674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "breaths/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38113", + "standardCode": { + "id": "Code_45400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38115", + "standardCode": { + "id": "Code_45402", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2680", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2890", + "extensionAttributes": [], + "code": "C49678", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BMI", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_150", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/BMI_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Mass Index", + "label": "Body Mass Index", + "synonyms": [ + "BMI", + "Quetelet Index" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16358", + "properties": [ + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38116", + "standardCode": { + "id": "Code_45403", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38117", + "standardCode": { + "id": "Code_45404", + "extensionAttributes": [], + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38118", + "standardCode": { + "id": "Code_45405", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24530", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28648", + "extensionAttributes": [], + "code": "C16358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Mass Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_151", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/DIABP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_152", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/SYSBP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Blood Pressure", + "label": "Blood Pressure", + "synonyms": [ + "BP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C54706", + "properties": [], + "code": { + "id": "AliasCode_3162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3372", + "extensionAttributes": [], + "code": "C54706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGINTP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Electrocardiogram Analysis", + "label": "Electrocardiogram Analysis", + "synonyms": [ + "ECG Analysis", + "EKG Analysis", + "Electrocardiogram Interpretation", + "ECG Interpretation", + "EKG Interpretation" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181655", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38119", + "standardCode": { + "id": "Code_45406", + "extensionAttributes": [], + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38120", + "standardCode": { + "id": "Code_45407", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38121", + "standardCode": { + "id": "Code_45408", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "EGCLSIG", + "label": "EGCLSIG", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38122", + "standardCode": { + "id": "Code_45409", + "extensionAttributes": [], + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38123", + "standardCode": { + "id": "Code_45410", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24531", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28649", + "extensionAttributes": [], + "code": "C181655", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Electrocardiogram Analysis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AVCOND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Atrioventricular Conduction ECG Assessment", + "label": "Atrioventricular Conduction ECG Assessment", + "synonyms": [ + "AVCOND", + "Atrioventricular Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111131", + "properties": [ + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38124", + "standardCode": { + "id": "Code_45411", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38125", + "standardCode": { + "id": "Code_45412", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38126", + "standardCode": { + "id": "Code_45413", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38127", + "standardCode": { + "id": "Code_45414", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38128", + "standardCode": { + "id": "Code_45415", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24532", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28650", + "extensionAttributes": [], + "code": "C111131", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Atrioventricular Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AXISVOLT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Axis and Voltage ECG Assessment", + "label": "Axis and Voltage ECG Assessment", + "synonyms": [ + "AXISVOLT", + "Axis and Voltage" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111132", + "properties": [ + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38129", + "standardCode": { + "id": "Code_45416", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38130", + "standardCode": { + "id": "Code_45417", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38131", + "standardCode": { + "id": "Code_45418", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38132", + "standardCode": { + "id": "Code_45419", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38133", + "standardCode": { + "id": "Code_45420", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24533", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28651", + "extensionAttributes": [], + "code": "C111132", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Axis and Voltage ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHYPTENL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chamber Hypertrophy or Enlargement ECG Assessment", + "label": "Chamber Hypertrophy or Enlargement ECG Assessment", + "synonyms": [ + "CHYPTENL", + "Chamber Hypertrophy or Enlargement" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111155", + "properties": [ + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38134", + "standardCode": { + "id": "Code_45421", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38135", + "standardCode": { + "id": "Code_45422", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38136", + "standardCode": { + "id": "Code_45423", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38137", + "standardCode": { + "id": "Code_45424", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38138", + "standardCode": { + "id": "Code_45425", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28652", + "extensionAttributes": [], + "code": "C111155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Chamber Hypertrophy or Enlargement ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TECHQUAL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Technical Quality", + "label": "ECG Technical Quality", + "synonyms": [ + "TECHQUAL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117807", + "properties": [ + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38139", + "standardCode": { + "id": "Code_45426", + "extensionAttributes": [], + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38140", + "standardCode": { + "id": "Code_45427", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38141", + "standardCode": { + "id": "Code_45428", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38142", + "standardCode": { + "id": "Code_45429", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24535", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28653", + "extensionAttributes": [], + "code": "C117807", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "ECG Technical Quality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/IVTIACD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Intraventricular and Intraatrial Conduction ECG Assessment", + "label": "Intraventricular and Intraatrial Conduction ECG Assessment", + "synonyms": [ + "IVTIACD", + "Intraventricular-Intraatrial Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111238", + "properties": [ + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38143", + "standardCode": { + "id": "Code_45430", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38144", + "standardCode": { + "id": "Code_45431", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38145", + "standardCode": { + "id": "Code_45432", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38146", + "standardCode": { + "id": "Code_45433", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38147", + "standardCode": { + "id": "Code_45434", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24536", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28654", + "extensionAttributes": [], + "code": "C111238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Intraventricular and Intraatrial Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_33", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MI", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Myocardial Infarction ECG Assessment", + "label": "Myocardial Infarction ECG Assessment", + "synonyms": [ + "MI", + "Myocardial Infarction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111280", + "properties": [ + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38148", + "standardCode": { + "id": "Code_45435", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38149", + "standardCode": { + "id": "Code_45436", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38150", + "standardCode": { + "id": "Code_45437", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38151", + "standardCode": { + "id": "Code_45438", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24537", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28655", + "extensionAttributes": [], + "code": "C111280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Myocardial Infarction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_34", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PACEMAKR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pacemaker ECG Assessment", + "label": "Pacemaker ECG Assessment", + "synonyms": [ + "PACEMAKR", + "Pacemaker" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111285", + "properties": [ + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38152", + "standardCode": { + "id": "Code_45439", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38153", + "standardCode": { + "id": "Code_45440", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38154", + "standardCode": { + "id": "Code_45441", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38155", + "standardCode": { + "id": "Code_45442", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38156", + "standardCode": { + "id": "Code_45443", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24538", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28656", + "extensionAttributes": [], + "code": "C111285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Pacemaker ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_35", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RHYNOS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Rhythm Not Otherwise Specified ECG Assessment", + "label": "Rhythm Not Otherwise Specified ECG Assessment", + "synonyms": [ + "RHYNOS", + "Rhythm Not Otherwise Specified" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111307", + "properties": [ + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38157", + "standardCode": { + "id": "Code_45444", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38158", + "standardCode": { + "id": "Code_45445", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38159", + "standardCode": { + "id": "Code_45446", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38160", + "standardCode": { + "id": "Code_45447", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38161", + "standardCode": { + "id": "Code_45448", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24539", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28657", + "extensionAttributes": [], + "code": "C111307", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Rhythm Not Otherwise Specified ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_36", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/STSTWUW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ST Segment, T wave, and U wave ECG Assessment", + "label": "ST Segment, T wave, and U wave ECG Assessment", + "synonyms": [ + "STSTWUW", + "ST Segment, T wave, and U wave" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111363", + "properties": [ + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38162", + "standardCode": { + "id": "Code_45449", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38163", + "standardCode": { + "id": "Code_45450", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38164", + "standardCode": { + "id": "Code_45451", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38165", + "standardCode": { + "id": "Code_45452", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38166", + "standardCode": { + "id": "Code_45453", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24540", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28658", + "extensionAttributes": [], + "code": "C111363", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "ST Segment, T wave, and U wave ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_37", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SNRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "label": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "synonyms": [ + "SNRARRY", + "Sinus Node Rhythms and Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111312", + "properties": [ + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38167", + "standardCode": { + "id": "Code_45454", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38168", + "standardCode": { + "id": "Code_45455", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38169", + "standardCode": { + "id": "Code_45456", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38170", + "standardCode": { + "id": "Code_45457", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38171", + "standardCode": { + "id": "Code_45458", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24541", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28659", + "extensionAttributes": [], + "code": "C111312", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_38", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Arrhythmia ECG Assessment", + "label": "Supraventricular Arrhythmia ECG Assessment", + "synonyms": [ + "SPRARRY", + "Supraventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111320", + "properties": [ + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38172", + "standardCode": { + "id": "Code_45459", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38173", + "standardCode": { + "id": "Code_45460", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38174", + "standardCode": { + "id": "Code_45461", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38175", + "standardCode": { + "id": "Code_45462", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38176", + "standardCode": { + "id": "Code_45463", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24542", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28660", + "extensionAttributes": [], + "code": "C111320", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_39", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Tachyarrhythmia ECG Assessment", + "label": "Supraventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "SPRTARRY", + "Supraventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111321", + "properties": [ + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38177", + "standardCode": { + "id": "Code_45464", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38178", + "standardCode": { + "id": "Code_45465", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38179", + "standardCode": { + "id": "Code_45466", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38180", + "standardCode": { + "id": "Code_45467", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38181", + "standardCode": { + "id": "Code_45468", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24543", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28661", + "extensionAttributes": [], + "code": "C111321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_40", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate PR Interval", + "label": "Aggregate PR Interval", + "synonyms": [ + "PR Interval Aggregate", + "PQ Interval Aggregate", + "PRAG", + "PQAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117773", + "properties": [ + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38182", + "standardCode": { + "id": "Code_45469", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38183", + "standardCode": { + "id": "Code_45470", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38184", + "standardCode": { + "id": "Code_45471", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38185", + "standardCode": { + "id": "Code_45472", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38186", + "standardCode": { + "id": "Code_45473", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38187", + "standardCode": { + "id": "Code_45474", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38188", + "standardCode": { + "id": "Code_45475", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24544", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28662", + "extensionAttributes": [], + "code": "C117773", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate PR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_41", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QRS Duration", + "label": "Aggregate QRS Duration", + "synonyms": [ + "QRS Aggregate Duration", + "QRSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117779", + "properties": [ + { + "id": "BiomedicalConceptProperty_186", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38189", + "standardCode": { + "id": "Code_45476", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_187", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38190", + "standardCode": { + "id": "Code_45477", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_188", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38191", + "standardCode": { + "id": "Code_45478", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_189", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38192", + "standardCode": { + "id": "Code_45479", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_190", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38193", + "standardCode": { + "id": "Code_45480", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_191", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38194", + "standardCode": { + "id": "Code_45481", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_192", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38195", + "standardCode": { + "id": "Code_45482", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24545", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28663", + "extensionAttributes": [], + "code": "C117779", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QRS Duration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_42", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QT Interval", + "label": "Aggregate QT Interval", + "synonyms": [ + "QT Interval Aggregate", + "QTAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117783", + "properties": [ + { + "id": "BiomedicalConceptProperty_193", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38196", + "standardCode": { + "id": "Code_45483", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_194", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38197", + "standardCode": { + "id": "Code_45484", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_195", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38198", + "standardCode": { + "id": "Code_45485", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_196", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38199", + "standardCode": { + "id": "Code_45486", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_197", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38200", + "standardCode": { + "id": "Code_45487", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_198", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38201", + "standardCode": { + "id": "Code_45488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_199", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38202", + "standardCode": { + "id": "Code_45489", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24546", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28664", + "extensionAttributes": [], + "code": "C117783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QT Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_43", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCBAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCB Interval", + "label": "Aggregate QTCB Interval", + "synonyms": [ + "QTCB Interval Aggregate", + "QTCBAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117784", + "properties": [ + { + "id": "BiomedicalConceptProperty_200", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38203", + "standardCode": { + "id": "Code_45490", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_201", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38204", + "standardCode": { + "id": "Code_45491", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_202", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38205", + "standardCode": { + "id": "Code_45492", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_203", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38206", + "standardCode": { + "id": "Code_45493", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_204", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38207", + "standardCode": { + "id": "Code_45494", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_205", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38208", + "standardCode": { + "id": "Code_45495", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_206", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38209", + "standardCode": { + "id": "Code_45496", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24547", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28665", + "extensionAttributes": [], + "code": "C117784", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCB Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_44", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCFAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCF Interval", + "label": "Aggregate QTCF Interval", + "synonyms": [ + "QTCF Interval Aggregate", + "QTCFAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117786", + "properties": [ + { + "id": "BiomedicalConceptProperty_207", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38210", + "standardCode": { + "id": "Code_45497", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_208", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38211", + "standardCode": { + "id": "Code_45498", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_209", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38212", + "standardCode": { + "id": "Code_45499", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_210", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38213", + "standardCode": { + "id": "Code_45500", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_211", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38214", + "standardCode": { + "id": "Code_45501", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_212", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38215", + "standardCode": { + "id": "Code_45502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_213", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38216", + "standardCode": { + "id": "Code_45503", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24548", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28666", + "extensionAttributes": [], + "code": "C117786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCF Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_45", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate RR Interval", + "label": "Aggregate RR Interval", + "synonyms": [ + "RR Interval Aggregate", + "RRAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117791", + "properties": [ + { + "id": "BiomedicalConceptProperty_214", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38217", + "standardCode": { + "id": "Code_45504", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_215", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38218", + "standardCode": { + "id": "Code_45505", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_216", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38219", + "standardCode": { + "id": "Code_45506", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_217", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38220", + "standardCode": { + "id": "Code_45507", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_218", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38221", + "standardCode": { + "id": "Code_45508", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_219", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38222", + "standardCode": { + "id": "Code_45509", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_220", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38223", + "standardCode": { + "id": "Code_45510", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24549", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28667", + "extensionAttributes": [], + "code": "C117791", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Aggregate RR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_46", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGHRMN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Mean Heart Rate by Electrocardiogram", + "label": "Mean Heart Rate by Electrocardiogram", + "synonyms": [ + "ECG Mean Heart Rate", + "EKG Mean Heart Rate", + "EGHRMN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119259", + "properties": [ + { + "id": "BiomedicalConceptProperty_221", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38224", + "standardCode": { + "id": "Code_45511", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_222", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3027", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_45513", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38225", + "standardCode": { + "id": "Code_45512", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_223", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38227", + "standardCode": { + "id": "Code_45514", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_224", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38228", + "standardCode": { + "id": "Code_45515", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_225", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38229", + "standardCode": { + "id": "Code_45516", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_226", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38230", + "standardCode": { + "id": "Code_45517", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24550", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28668", + "extensionAttributes": [], + "code": "C119259", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Mean Heart Rate by Electrocardiogram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRS_AXIS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QRS Axis", + "label": "QRS Axis", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C118165", + "properties": [ + { + "id": "BiomedicalConceptProperty_227", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38231", + "standardCode": { + "id": "Code_45518", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_228", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3028", + "instanceType": "ResponseCode", + "name": "deg", + "label": "deg", + "isEnabled": true, + "code": { + "id": "Code_45520", + "extensionAttributes": [], + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "deg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38232", + "standardCode": { + "id": "Code_45519", + "extensionAttributes": [], + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_229", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38234", + "standardCode": { + "id": "Code_45521", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_230", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38235", + "standardCode": { + "id": "Code_45522", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_231", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38236", + "standardCode": { + "id": "Code_45523", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_232", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38237", + "standardCode": { + "id": "Code_45524", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24551", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28669", + "extensionAttributes": [], + "code": "C118165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QRS Axis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCUNSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QTc Correction Method Unspecified, Aggregate", + "label": "QTc Correction Method Unspecified, Aggregate", + "synonyms": [ + "QTCUNSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174285", + "properties": [ + { + "id": "BiomedicalConceptProperty_233", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38238", + "standardCode": { + "id": "Code_45525", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_234", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38239", + "standardCode": { + "id": "Code_45526", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_235", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38240", + "standardCode": { + "id": "Code_45527", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_236", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38241", + "standardCode": { + "id": "Code_45528", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_237", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38242", + "standardCode": { + "id": "Code_45529", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_238", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38243", + "standardCode": { + "id": "Code_45530", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_239", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38244", + "standardCode": { + "id": "Code_45531", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24552", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28670", + "extensionAttributes": [], + "code": "C174285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QTc Correction Method Unspecified, Aggregate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Arrhythmia ECG Assessment", + "label": "Ventricular Arrhythmia ECG Assessment", + "synonyms": [ + "VTARRY", + "Ventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111330", + "properties": [ + { + "id": "BiomedicalConceptProperty_240", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38245", + "standardCode": { + "id": "Code_45532", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_241", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38246", + "standardCode": { + "id": "Code_45533", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_242", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38247", + "standardCode": { + "id": "Code_45534", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_243", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38248", + "standardCode": { + "id": "Code_45535", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_244", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38249", + "standardCode": { + "id": "Code_45536", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24553", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28671", + "extensionAttributes": [], + "code": "C111330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Tachyarrhythmia ECG Assessment", + "label": "Ventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "VTTARRY", + "Ventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111331", + "properties": [ + { + "id": "BiomedicalConceptProperty_245", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38250", + "standardCode": { + "id": "Code_45537", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_246", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38251", + "standardCode": { + "id": "Code_45538", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_247", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38252", + "standardCode": { + "id": "Code_45539", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_248", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38253", + "standardCode": { + "id": "Code_45540", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_249", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38254", + "standardCode": { + "id": "Code_45541", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24554", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28672", + "extensionAttributes": [], + "code": "C111331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCANCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "id": "BiomedicalConceptProperty_250", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38255", + "standardCode": { + "id": "Code_45542", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_251", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3029", + "instanceType": "ResponseCode", + "name": "CT SCAN", + "label": "CT SCAN", + "isEnabled": true, + "code": { + "id": "Code_45544", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CT SCAN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38256", + "standardCode": { + "id": "Code_45543", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_252", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38258", + "standardCode": { + "id": "Code_45545", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_253", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38259", + "standardCode": { + "id": "Code_45546", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_254", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3030", + "instanceType": "ResponseCode", + "name": "CHEST", + "label": "CHEST", + "isEnabled": true, + "code": { + "id": "Code_45548", + "extensionAttributes": [], + "code": "C25389", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CHEST", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38260", + "standardCode": { + "id": "Code_45547", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_255", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38262", + "standardCode": { + "id": "Code_45549", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_256", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38263", + "standardCode": { + "id": "Code_45550", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "id": "BiomedicalConceptProperty_257", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38264", + "standardCode": { + "id": "Code_45551", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_258", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3031", + "instanceType": "ResponseCode", + "name": "MRI", + "label": "MRI", + "isEnabled": true, + "code": { + "id": "Code_45553", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38265", + "standardCode": { + "id": "Code_45552", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_259", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38267", + "standardCode": { + "id": "Code_45554", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_260", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38268", + "standardCode": { + "id": "Code_45555", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_261", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3032", + "instanceType": "ResponseCode", + "name": "BRAIN", + "label": "BRAIN", + "isEnabled": true, + "code": { + "id": "Code_45557", + "extensionAttributes": [], + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38269", + "standardCode": { + "id": "Code_45556", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_262", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38271", + "standardCode": { + "id": "Code_45558", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_263", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38272", + "standardCode": { + "id": "Code_45559", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "id": "BiomedicalConceptProperty_264", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38273", + "standardCode": { + "id": "Code_45560", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_265", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38274", + "standardCode": { + "id": "Code_45561", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24555", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28673", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "id": "BiomedicalConceptProperty_266", + "extensionAttributes": [], + "name": "CMTRT", + "label": "CMTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38275", + "standardCode": { + "id": "Code_45562", + "extensionAttributes": [], + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_267", + "extensionAttributes": [], + "name": "CMDECOD", + "label": "CMDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38276", + "standardCode": { + "id": "Code_45563", + "extensionAttributes": [], + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_268", + "extensionAttributes": [], + "name": "CMCLAS", + "label": "CMCLAS", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38277", + "standardCode": { + "id": "Code_45564", + "extensionAttributes": [], + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_269", + "extensionAttributes": [], + "name": "CMINDC", + "label": "CMINDC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38278", + "standardCode": { + "id": "Code_45565", + "extensionAttributes": [], + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_270", + "extensionAttributes": [], + "name": "CMDOSE", + "label": "CMDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38279", + "standardCode": { + "id": "Code_45566", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_271", + "extensionAttributes": [], + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38280", + "standardCode": { + "id": "Code_45567", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_272", + "extensionAttributes": [], + "name": "CMDOSU", + "label": "CMDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38281", + "standardCode": { + "id": "Code_45568", + "extensionAttributes": [], + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_273", + "extensionAttributes": [], + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38282", + "standardCode": { + "id": "Code_45569", + "extensionAttributes": [], + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_274", + "extensionAttributes": [], + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38283", + "standardCode": { + "id": "Code_45570", + "extensionAttributes": [], + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_275", + "extensionAttributes": [], + "name": "CMROUTE", + "label": "CMROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38284", + "standardCode": { + "id": "Code_45571", + "extensionAttributes": [], + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_276", + "extensionAttributes": [], + "name": "CMSTDTC", + "label": "CMSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38285", + "standardCode": { + "id": "Code_45572", + "extensionAttributes": [], + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_277", + "extensionAttributes": [], + "name": "CMENDTC", + "label": "CMENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38286", + "standardCode": { + "id": "Code_45573", + "extensionAttributes": [], + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_278", + "extensionAttributes": [], + "name": "CMSTRF", + "label": "CMSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38287", + "standardCode": { + "id": "Code_45574", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_279", + "extensionAttributes": [], + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38288", + "standardCode": { + "id": "Code_45575", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_280", + "extensionAttributes": [], + "name": "CMSTTPT", + "label": "CMSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38289", + "standardCode": { + "id": "Code_45576", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_281", + "extensionAttributes": [], + "name": "CMENRF", + "label": "CMENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38290", + "standardCode": { + "id": "Code_45577", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_282", + "extensionAttributes": [], + "name": "CMENRTPT", + "label": "CMENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38291", + "standardCode": { + "id": "Code_45578", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_283", + "extensionAttributes": [], + "name": "CMENTPT", + "label": "CMENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38292", + "standardCode": { + "id": "Code_45579", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24556", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28674", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin Measurement", + "label": "Hemoglobin Measurement", + "synonyms": [ + "Hemoglobin", + "HGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64848", + "properties": [ + { + "id": "BiomedicalConceptProperty_284", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38293", + "standardCode": { + "id": "Code_45580", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_285", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38294", + "standardCode": { + "id": "Code_45581", + "extensionAttributes": [], + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_286", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3033", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45583", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38295", + "standardCode": { + "id": "Code_45582", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_287", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38297", + "standardCode": { + "id": "Code_45584", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_288", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38298", + "standardCode": { + "id": "Code_45585", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24557", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28675", + "extensionAttributes": [], + "code": "C64848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HCTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hematocrit Measurement", + "label": "Hematocrit Measurement", + "synonyms": [ + "Hematocrit", + "Packed Cell Volume", + "PCV", + "Erythrocyte Volume Fraction", + "EVF" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64796", + "properties": [ + { + "id": "BiomedicalConceptProperty_289", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38299", + "standardCode": { + "id": "Code_45586", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_290", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38300", + "standardCode": { + "id": "Code_45587", + "extensionAttributes": [], + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_291", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3034", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45589", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38301", + "standardCode": { + "id": "Code_45588", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_292", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38303", + "standardCode": { + "id": "Code_45590", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_293", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38304", + "standardCode": { + "id": "Code_45591", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24558", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28676", + "extensionAttributes": [], + "code": "C64796", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hematocrit Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "id": "BiomedicalConceptProperty_294", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38305", + "standardCode": { + "id": "Code_45592", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_295", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38306", + "standardCode": { + "id": "Code_45593", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_296", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3035", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45595", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38307", + "standardCode": { + "id": "Code_45594", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_297", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38309", + "standardCode": { + "id": "Code_45596", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_298", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38310", + "standardCode": { + "id": "Code_45597", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24559", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28677", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCH", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Hemoglobin", + "label": "Erythrocyte Mean Corpuscular Hemoglobin", + "synonyms": [ + "RBC Mean Corpuscular Hemoglobin", + "MCH" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64797", + "properties": [ + { + "id": "BiomedicalConceptProperty_299", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38311", + "standardCode": { + "id": "Code_45598", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_300", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38312", + "standardCode": { + "id": "Code_45599", + "extensionAttributes": [], + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_301", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3036", + "instanceType": "ResponseCode", + "name": "ERYTHROCYTES", + "label": "ERYTHROCYTES", + "isEnabled": true, + "code": { + "id": "Code_45601", + "extensionAttributes": [], + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38313", + "standardCode": { + "id": "Code_45600", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_302", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38315", + "standardCode": { + "id": "Code_45602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_303", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38316", + "standardCode": { + "id": "Code_45603", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24560", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28678", + "extensionAttributes": [], + "code": "C64797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Hemoglobin", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_46", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Volume", + "label": "Erythrocyte Mean Corpuscular Volume", + "synonyms": [ + "RBC Mean Corpuscular Volume", + "MCV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64799", + "properties": [ + { + "id": "BiomedicalConceptProperty_304", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38317", + "standardCode": { + "id": "Code_45604", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_305", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3037", + "instanceType": "ResponseCode", + "name": "fL", + "label": "fL", + "isEnabled": true, + "code": { + "id": "Code_45606", + "extensionAttributes": [], + "code": "C64780", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "fL", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38318", + "standardCode": { + "id": "Code_45605", + "extensionAttributes": [], + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_306", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3038", + "instanceType": "ResponseCode", + "name": "ERYTHROCYTES", + "label": "ERYTHROCYTES", + "isEnabled": true, + "code": { + "id": "Code_45608", + "extensionAttributes": [], + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38320", + "standardCode": { + "id": "Code_45607", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_307", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38322", + "standardCode": { + "id": "Code_45609", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_308", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38323", + "standardCode": { + "id": "Code_45610", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24561", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28679", + "extensionAttributes": [], + "code": "C64799", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Volume", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_47", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "id": "BiomedicalConceptProperty_309", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38324", + "standardCode": { + "id": "Code_45611", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_310", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38325", + "standardCode": { + "id": "Code_45612", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_311", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3039", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45614", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38326", + "standardCode": { + "id": "Code_45613", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_312", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38328", + "standardCode": { + "id": "Code_45615", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_313", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38329", + "standardCode": { + "id": "Code_45616", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24562", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28680", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_48", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTSGBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Segmented Neutrophil Count", + "label": "Segmented Neutrophil Count", + "synonyms": [ + "Segmented Neutrophils", + "NEUTSG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81997", + "properties": [ + { + "id": "BiomedicalConceptProperty_314", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38330", + "standardCode": { + "id": "Code_45617", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_315", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3040", + "instanceType": "ResponseCode", + "name": "10^9/L", + "label": "10^9/L", + "isEnabled": true, + "code": { + "id": "Code_45619", + "extensionAttributes": [], + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38331", + "standardCode": { + "id": "Code_45618", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_316", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3041", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45621", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38333", + "standardCode": { + "id": "Code_45620", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_317", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38335", + "standardCode": { + "id": "Code_45622", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_318", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38336", + "standardCode": { + "id": "Code_45623", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24563", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28681", + "extensionAttributes": [], + "code": "C81997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Segmented Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_49", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Neutrophil Band Form Count", + "label": "Neutrophil Band Form Count", + "synonyms": [ + "Neutrophil Bands", + "Bands", + "NEUTB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64830", + "properties": [ + { + "id": "BiomedicalConceptProperty_319", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38337", + "standardCode": { + "id": "Code_45624", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_320", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3042", + "instanceType": "ResponseCode", + "name": "10^6/L", + "label": "10^6/L", + "isEnabled": true, + "code": { + "id": "Code_45626", + "extensionAttributes": [], + "code": "C67452", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^6/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38338", + "standardCode": { + "id": "Code_45625", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_321", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3043", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45628", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38340", + "standardCode": { + "id": "Code_45627", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_322", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38342", + "standardCode": { + "id": "Code_45629", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_323", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38343", + "standardCode": { + "id": "Code_45630", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24564", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28682", + "extensionAttributes": [], + "code": "C64830", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Neutrophil Band Form Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_50", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Neutrophil Count", + "label": "Absolute Neutrophil Count", + "synonyms": [ + "Neutrophils", + "Total Neutrophil Count", + "NEUT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C63321", + "properties": [ + { + "id": "BiomedicalConceptProperty_324", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38344", + "standardCode": { + "id": "Code_45631", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_325", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3044", + "instanceType": "ResponseCode", + "name": "10^9/L", + "label": "10^9/L", + "isEnabled": true, + "code": { + "id": "Code_45633", + "extensionAttributes": [], + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38345", + "standardCode": { + "id": "Code_45632", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_326", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3045", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45635", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38347", + "standardCode": { + "id": "Code_45634", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_327", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38349", + "standardCode": { + "id": "Code_45636", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_328", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38350", + "standardCode": { + "id": "Code_45637", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24565", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28683", + "extensionAttributes": [], + "code": "C63321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_51", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MONOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Monocyte Count", + "label": "Monocyte Count", + "synonyms": [ + "Monocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64823", + "properties": [ + { + "id": "BiomedicalConceptProperty_329", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38351", + "standardCode": { + "id": "Code_45638", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_330", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38352", + "standardCode": { + "id": "Code_45639", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_331", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3046", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45641", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38353", + "standardCode": { + "id": "Code_45640", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_332", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38355", + "standardCode": { + "id": "Code_45642", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_333", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38356", + "standardCode": { + "id": "Code_45643", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24566", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28684", + "extensionAttributes": [], + "code": "C64823", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Monocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_52", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EOSBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eosinophil Count", + "label": "Eosinophil Count", + "synonyms": [ + "Eosinophils" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64550", + "properties": [ + { + "id": "BiomedicalConceptProperty_334", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38357", + "standardCode": { + "id": "Code_45644", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_335", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38358", + "standardCode": { + "id": "Code_45645", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_336", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3047", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45647", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38359", + "standardCode": { + "id": "Code_45646", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_337", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38361", + "standardCode": { + "id": "Code_45648", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_338", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38362", + "standardCode": { + "id": "Code_45649", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24567", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28685", + "extensionAttributes": [], + "code": "C64550", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Eosinophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_53", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BASOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Basophil Count", + "label": "Absolute Basophil Count", + "synonyms": [ + "Basophils", + "Total Basophil Count" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64470", + "properties": [ + { + "id": "BiomedicalConceptProperty_339", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38363", + "standardCode": { + "id": "Code_45650", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_340", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38364", + "standardCode": { + "id": "Code_45651", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_341", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3048", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45653", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38365", + "standardCode": { + "id": "Code_45652", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_342", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38367", + "standardCode": { + "id": "Code_45654", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_343", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38368", + "standardCode": { + "id": "Code_45655", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3564", + "extensionAttributes": [], + "code": "C64470", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Basophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_54", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "id": "BiomedicalConceptProperty_344", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38369", + "standardCode": { + "id": "Code_45656", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_345", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38370", + "standardCode": { + "id": "Code_45657", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_346", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3049", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45659", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38371", + "standardCode": { + "id": "Code_45658", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_347", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38373", + "standardCode": { + "id": "Code_45660", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_348", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38374", + "standardCode": { + "id": "Code_45661", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24568", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28686", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_55", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MICROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Microcyte Count", + "label": "Microcyte Count", + "synonyms": [ + "Microcytes", + "MICROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64822", + "properties": [ + { + "id": "BiomedicalConceptProperty_349", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38375", + "standardCode": { + "id": "Code_45662", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_350", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3050", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45664", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38376", + "standardCode": { + "id": "Code_45663", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_351", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38378", + "standardCode": { + "id": "Code_45665", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_352", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38379", + "standardCode": { + "id": "Code_45666", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24569", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28687", + "extensionAttributes": [], + "code": "C64822", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Microcyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_56", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MACROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Macrocyte Count", + "label": "Macrocyte Count", + "synonyms": [ + "Macrocytes", + "MACROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64821", + "properties": [ + { + "id": "BiomedicalConceptProperty_353", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38380", + "standardCode": { + "id": "Code_45667", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_354", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3051", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45669", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38381", + "standardCode": { + "id": "Code_45668", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_355", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38383", + "standardCode": { + "id": "Code_45670", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_356", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38384", + "standardCode": { + "id": "Code_45671", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24570", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28688", + "extensionAttributes": [], + "code": "C64821", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Macrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_57", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ANISOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Anisocyte Measurement", + "label": "Anisocyte Measurement", + "synonyms": [ + "Anisocytes", + "Anisocytosis", + "ANISO" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74797", + "properties": [ + { + "id": "BiomedicalConceptProperty_357", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38385", + "standardCode": { + "id": "Code_45672", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_358", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3052", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45674", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38386", + "standardCode": { + "id": "Code_45673", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_359", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38388", + "standardCode": { + "id": "Code_45675", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_360", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38389", + "standardCode": { + "id": "Code_45676", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24571", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28689", + "extensionAttributes": [], + "code": "C74797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anisocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_58", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POIKILOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Poikilocyte Measurement", + "label": "Poikilocyte Measurement", + "synonyms": [ + "POIKILO", + "Poikilocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C79602", + "properties": [ + { + "id": "BiomedicalConceptProperty_361", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38390", + "standardCode": { + "id": "Code_45677", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_362", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3053", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45679", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38391", + "standardCode": { + "id": "Code_45678", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_363", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38393", + "standardCode": { + "id": "Code_45680", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_364", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38394", + "standardCode": { + "id": "Code_45681", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24572", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28690", + "extensionAttributes": [], + "code": "C79602", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Poikilocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_59", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POLYCHRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Polychromasia", + "label": "Polychromasia", + "synonyms": [ + "POLYCHR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64803", + "properties": [ + { + "id": "BiomedicalConceptProperty_365", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38395", + "standardCode": { + "id": "Code_45682", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_366", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3054", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45684", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38396", + "standardCode": { + "id": "Code_45683", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_367", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38398", + "standardCode": { + "id": "Code_45685", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_368", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38399", + "standardCode": { + "id": "Code_45686", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24573", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28691", + "extensionAttributes": [], + "code": "C64803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Polychromasia", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_60", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "id": "BiomedicalConceptProperty_369", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38400", + "standardCode": { + "id": "Code_45687", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_370", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38401", + "standardCode": { + "id": "Code_45688", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_371", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3055", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45690", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38402", + "standardCode": { + "id": "Code_45689", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_372", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38404", + "standardCode": { + "id": "Code_45691", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_373", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38405", + "standardCode": { + "id": "Code_45692", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24574", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28692", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_61", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "id": "BiomedicalConceptProperty_374", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38406", + "standardCode": { + "id": "Code_45693", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_375", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38407", + "standardCode": { + "id": "Code_45694", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_376", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3056", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45696", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38408", + "standardCode": { + "id": "Code_45695", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_377", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38410", + "standardCode": { + "id": "Code_45697", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_378", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38411", + "standardCode": { + "id": "Code_45698", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24575", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28693", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_62", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "id": "BiomedicalConceptProperty_379", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38412", + "standardCode": { + "id": "Code_45699", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_380", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38413", + "standardCode": { + "id": "Code_45700", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_381", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3057", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45702", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38414", + "standardCode": { + "id": "Code_45701", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_382", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38416", + "standardCode": { + "id": "Code_45703", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_383", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38417", + "standardCode": { + "id": "Code_45704", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24576", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28694", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_63", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "id": "BiomedicalConceptProperty_384", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38418", + "standardCode": { + "id": "Code_45705", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_385", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38419", + "standardCode": { + "id": "Code_45706", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_386", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3058", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45708", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38420", + "standardCode": { + "id": "Code_45707", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_387", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38422", + "standardCode": { + "id": "Code_45709", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_388", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38423", + "standardCode": { + "id": "Code_45710", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24577", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28695", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_78", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_64", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "id": "BiomedicalConceptProperty_389", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38424", + "standardCode": { + "id": "Code_45711", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_390", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38425", + "standardCode": { + "id": "Code_45712", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_391", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3059", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45714", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38426", + "standardCode": { + "id": "Code_45713", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_392", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38428", + "standardCode": { + "id": "Code_45715", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_393", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38429", + "standardCode": { + "id": "Code_45716", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3565", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_79", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_65", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "id": "BiomedicalConceptProperty_394", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38430", + "standardCode": { + "id": "Code_45717", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_395", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38431", + "standardCode": { + "id": "Code_45718", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_396", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3060", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45720", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38432", + "standardCode": { + "id": "Code_45719", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_397", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38434", + "standardCode": { + "id": "Code_45721", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_398", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38435", + "standardCode": { + "id": "Code_45722", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24578", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28696", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_80", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_66", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "id": "BiomedicalConceptProperty_399", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38436", + "standardCode": { + "id": "Code_45723", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_400", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38437", + "standardCode": { + "id": "Code_45724", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_401", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3061", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45726", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38438", + "standardCode": { + "id": "Code_45725", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_402", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38440", + "standardCode": { + "id": "Code_45727", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_403", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38441", + "standardCode": { + "id": "Code_45728", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24579", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28697", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_81", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_67", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "id": "BiomedicalConceptProperty_404", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38442", + "standardCode": { + "id": "Code_45729", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_405", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38443", + "standardCode": { + "id": "Code_45730", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_406", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3062", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45732", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38444", + "standardCode": { + "id": "Code_45731", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_407", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38446", + "standardCode": { + "id": "Code_45733", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_408", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38447", + "standardCode": { + "id": "Code_45734", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24580", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28698", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_82", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_68", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BICARBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Bicarbonate Measurement", + "label": "Bicarbonate Measurement", + "synonyms": [ + "Bicarbonate", + "HCO3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74667", + "properties": [ + { + "id": "BiomedicalConceptProperty_419", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38460", + "standardCode": { + "id": "Code_45747", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_420", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38461", + "standardCode": { + "id": "Code_45748", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_421", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3065", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45750", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38462", + "standardCode": { + "id": "Code_45749", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_422", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38464", + "standardCode": { + "id": "Code_45751", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_423", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38465", + "standardCode": { + "id": "Code_45752", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24581", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28699", + "extensionAttributes": [], + "code": "C74667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Bicarbonate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_83", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_69", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "id": "BiomedicalConceptProperty_429", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38472", + "standardCode": { + "id": "Code_45759", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_430", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38473", + "standardCode": { + "id": "Code_45760", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_431", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3067", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45762", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38474", + "standardCode": { + "id": "Code_45761", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_432", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38476", + "standardCode": { + "id": "Code_45763", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_433", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38477", + "standardCode": { + "id": "Code_45764", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24582", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28700", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_84", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_70", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_439", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38484", + "standardCode": { + "id": "Code_45771", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_440", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38485", + "standardCode": { + "id": "Code_45772", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_441", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3069", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45774", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38486", + "standardCode": { + "id": "Code_45773", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_442", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38488", + "standardCode": { + "id": "Code_45775", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_443", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38489", + "standardCode": { + "id": "Code_45776", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_85", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_71", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GGTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Gamma Glutamyl Transpeptidase Measurement", + "label": "Gamma Glutamyl Transpeptidase Measurement", + "synonyms": [ + "Gamma Glutamyl Transferase", + "GGT", + "GGTP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64847", + "properties": [ + { + "id": "BiomedicalConceptProperty_449", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38496", + "standardCode": { + "id": "Code_45783", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_450", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38497", + "standardCode": { + "id": "Code_45784", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_451", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3071", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45786", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38498", + "standardCode": { + "id": "Code_45785", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_452", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38500", + "standardCode": { + "id": "Code_45787", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_453", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38501", + "standardCode": { + "id": "Code_45788", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_37996", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45283", + "extensionAttributes": [], + "code": "C64847", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Gamma Glutamyl Transpeptidase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_86", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_72", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "id": "BiomedicalConceptProperty_459", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38508", + "standardCode": { + "id": "Code_45795", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_460", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38509", + "standardCode": { + "id": "Code_45796", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_461", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3073", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45798", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38510", + "standardCode": { + "id": "Code_45797", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_462", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38512", + "standardCode": { + "id": "Code_45799", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_463", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38513", + "standardCode": { + "id": "Code_45800", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24584", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28702", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_87", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_73", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHOSSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Phosphate Measurement", + "label": "Phosphate Measurement", + "synonyms": [ + "Phosphorus", + "Phosphate" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64857", + "properties": [ + { + "id": "BiomedicalConceptProperty_469", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38520", + "standardCode": { + "id": "Code_45807", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_470", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38521", + "standardCode": { + "id": "Code_45808", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_471", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3075", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45810", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38522", + "standardCode": { + "id": "Code_45809", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_472", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38524", + "standardCode": { + "id": "Code_45811", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_473", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38525", + "standardCode": { + "id": "Code_45812", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24585", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28703", + "extensionAttributes": [], + "code": "C64857", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Phosphate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_88", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_74", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "id": "BiomedicalConceptProperty_480", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38533", + "standardCode": { + "id": "Code_45820", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_481", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38534", + "standardCode": { + "id": "Code_45821", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_482", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3077", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45823", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38535", + "standardCode": { + "id": "Code_45822", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_483", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38537", + "standardCode": { + "id": "Code_45824", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_484", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38538", + "standardCode": { + "id": "Code_45825", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24586", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28704", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_89", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_75", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_495", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38551", + "standardCode": { + "id": "Code_45838", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_496", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38552", + "standardCode": { + "id": "Code_45839", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_497", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3080", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45841", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38553", + "standardCode": { + "id": "Code_45840", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_498", + "extensionAttributes": [], + "name": "LBMETHOD", + "label": "LBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38555", + "standardCode": { + "id": "Code_45842", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_499", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38556", + "standardCode": { + "id": "Code_45843", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_500", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38557", + "standardCode": { + "id": "Code_45844", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_90", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_76", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_506", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38564", + "standardCode": { + "id": "Code_45851", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_507", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38565", + "standardCode": { + "id": "Code_45852", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_508", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3082", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45854", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38566", + "standardCode": { + "id": "Code_45853", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_509", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38568", + "standardCode": { + "id": "Code_45855", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_510", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38569", + "standardCode": { + "id": "Code_45856", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_91", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_77", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "id": "BiomedicalConceptProperty_516", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38576", + "standardCode": { + "id": "Code_45863", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_517", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38577", + "standardCode": { + "id": "Code_45864", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_518", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3084", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45866", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38578", + "standardCode": { + "id": "Code_45865", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_519", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38580", + "standardCode": { + "id": "Code_45867", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_520", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38581", + "standardCode": { + "id": "Code_45868", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24589", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28707", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_92", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_78", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3UPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Uptake Measurement", + "label": "Triiodothyronine Uptake Measurement", + "synonyms": [ + "T3UP", + "T3U", + "Triiodothyronine Resin Uptake" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74748", + "properties": [ + { + "id": "BiomedicalConceptProperty_526", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38588", + "standardCode": { + "id": "Code_45875", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_527", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38589", + "standardCode": { + "id": "Code_45876", + "extensionAttributes": [], + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_528", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3086", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45878", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38590", + "standardCode": { + "id": "Code_45877", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_529", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38592", + "standardCode": { + "id": "Code_45879", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_530", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38593", + "standardCode": { + "id": "Code_45880", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24590", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28708", + "extensionAttributes": [], + "code": "C74748", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Uptake Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_93", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_79", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3SERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Measurement", + "label": "Triiodothyronine Measurement", + "synonyms": [ + "T3", + "Total T3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74747", + "properties": [ + { + "id": "BiomedicalConceptProperty_535", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38599", + "standardCode": { + "id": "Code_45886", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_536", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38600", + "standardCode": { + "id": "Code_45887", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_537", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3088", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45889", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38601", + "standardCode": { + "id": "Code_45888", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_538", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38603", + "standardCode": { + "id": "Code_45890", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_539", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38604", + "standardCode": { + "id": "Code_45891", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24591", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28709", + "extensionAttributes": [], + "code": "C74747", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_94", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_80", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Measurement", + "label": "Free Thyroxine Measurement", + "synonyms": [ + "Free T4", + "T4FR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74786", + "properties": [ + { + "id": "BiomedicalConceptProperty_545", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38611", + "standardCode": { + "id": "Code_45898", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_546", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38612", + "standardCode": { + "id": "Code_45899", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_547", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3090", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45901", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38613", + "standardCode": { + "id": "Code_45900", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_548", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38615", + "standardCode": { + "id": "Code_45902", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_549", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38616", + "standardCode": { + "id": "Code_45903", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24592", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28710", + "extensionAttributes": [], + "code": "C74786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_95", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_81", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRIDXSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Index", + "label": "Free Thyroxine Index", + "synonyms": [ + "T4FRIDX" + ], + "reference": "/mdr/bc/biomedicalconcepts/C170598", + "properties": [ + { + "id": "BiomedicalConceptProperty_555", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38623", + "standardCode": { + "id": "Code_45910", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_556", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3092", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45912", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38624", + "standardCode": { + "id": "Code_45911", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_557", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38626", + "standardCode": { + "id": "Code_45913", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_558", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38627", + "standardCode": { + "id": "Code_45914", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24593", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28711", + "extensionAttributes": [], + "code": "C170598", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_96", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_82", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TSHBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Thyrotropin Measurement", + "label": "Thyrotropin Measurement", + "synonyms": [ + "TSH", + "Thyrotropin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64813", + "properties": [ + { + "id": "BiomedicalConceptProperty_564", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38634", + "standardCode": { + "id": "Code_45921", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_565", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38635", + "standardCode": { + "id": "Code_45922", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_566", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3094", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45924", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38636", + "standardCode": { + "id": "Code_45923", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_567", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38638", + "standardCode": { + "id": "Code_45925", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_568", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38639", + "standardCode": { + "id": "Code_45926", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24594", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28712", + "extensionAttributes": [], + "code": "C64813", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Thyrotropin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_97", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_83", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB9BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Folic Acid Measurement", + "label": "Folic Acid Measurement", + "synonyms": [ + "Folate", + "Folic Acid", + "Vitamin B9", + "VITB9" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74676", + "properties": [ + { + "id": "BiomedicalConceptProperty_574", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38647", + "standardCode": { + "id": "Code_45934", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_575", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38648", + "standardCode": { + "id": "Code_45935", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_576", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3097", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45937", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38649", + "standardCode": { + "id": "Code_45936", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_577", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38651", + "standardCode": { + "id": "Code_45938", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_578", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38652", + "standardCode": { + "id": "Code_45939", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3428", + "extensionAttributes": [], + "code": "C74676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Folic Acid Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_98", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_84", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB12BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Vitamin B12 Measurement", + "label": "Vitamin B12 Measurement", + "synonyms": [ + "Cobalamin", + "Vitamin B12", + "VITB12" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64817", + "properties": [ + { + "id": "BiomedicalConceptProperty_584", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38660", + "standardCode": { + "id": "Code_45947", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_585", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38661", + "standardCode": { + "id": "Code_45948", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_586", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3100", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45950", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38662", + "standardCode": { + "id": "Code_45949", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_587", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38664", + "standardCode": { + "id": "Code_45951", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_588", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38665", + "standardCode": { + "id": "Code_45952", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24595", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28713", + "extensionAttributes": [], + "code": "C64817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Vitamin B12 Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_99", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_85", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPLAB", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum Antibody Measurement", + "label": "Treponema pallidum Antibody Measurement", + "synonyms": [ + "TPLAB", + "Treponema pallidum Antibody", + "Syphilis Antibody" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132388", + "properties": [ + { + "id": "BiomedicalConceptProperty_592", + "extensionAttributes": [], + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3102", + "instanceType": "ResponseCode", + "name": "DETECTION", + "label": "DETECTION", + "isEnabled": true, + "code": { + "id": "Code_45958", + "extensionAttributes": [], + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38670", + "standardCode": { + "id": "Code_45957", + "extensionAttributes": [], + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_593", + "extensionAttributes": [], + "name": "MBORRES", + "label": "MBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38672", + "standardCode": { + "id": "Code_45959", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_594", + "extensionAttributes": [], + "name": "MBSPEC", + "label": "MBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3103", + "instanceType": "ResponseCode", + "name": "SERUM", + "label": "SERUM", + "isEnabled": true, + "code": { + "id": "Code_45961", + "extensionAttributes": [], + "code": "C13325", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38673", + "standardCode": { + "id": "Code_45960", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_595", + "extensionAttributes": [], + "name": "MBMETHOD", + "label": "MBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38675", + "standardCode": { + "id": "Code_45962", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_596", + "extensionAttributes": [], + "name": "MBDTC", + "label": "MBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38676", + "standardCode": { + "id": "Code_45963", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24596", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28714", + "extensionAttributes": [], + "code": "C132388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum Antibody Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_100", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_86", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPADNA", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum DNA Measurement", + "label": "Treponema pallidum DNA Measurement", + "synonyms": [ + "TPADNA", + "Syphilis DNA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C198341", + "properties": [ + { + "id": "BiomedicalConceptProperty_606", + "extensionAttributes": [], + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3106", + "instanceType": "ResponseCode", + "name": "DETECTION", + "label": "DETECTION", + "isEnabled": true, + "code": { + "id": "Code_45976", + "extensionAttributes": [], + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38688", + "standardCode": { + "id": "Code_45975", + "extensionAttributes": [], + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_607", + "extensionAttributes": [], + "name": "MBORRES", + "label": "MBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38690", + "standardCode": { + "id": "Code_45977", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_608", + "extensionAttributes": [], + "name": "MBSPEC", + "label": "MBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38691", + "standardCode": { + "id": "Code_45978", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_609", + "extensionAttributes": [], + "name": "MBMETHOD", + "label": "MBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3107", + "instanceType": "ResponseCode", + "name": "LINE PROBE ASSAY", + "label": "LINE PROBE ASSAY", + "isEnabled": true, + "code": { + "id": "Code_45980", + "extensionAttributes": [], + "code": "C102656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "LINE PROBE ASSAY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38692", + "standardCode": { + "id": "Code_45979", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_610", + "extensionAttributes": [], + "name": "MBDTC", + "label": "MBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38694", + "standardCode": { + "id": "Code_45981", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24597", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28715", + "extensionAttributes": [], + "code": "C198341", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum DNA Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_101", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_87", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "id": "BiomedicalConceptProperty_616", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38701", + "standardCode": { + "id": "Code_45988", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_617", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3109", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_45990", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38702", + "standardCode": { + "id": "Code_45989", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_618", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38704", + "standardCode": { + "id": "Code_45991", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24598", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28716", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_102", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_88", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "id": "BiomedicalConceptProperty_629", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38717", + "standardCode": { + "id": "Code_46004", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_630", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3112", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46006", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38718", + "standardCode": { + "id": "Code_46005", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_631", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38720", + "standardCode": { + "id": "Code_46007", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_632", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38721", + "standardCode": { + "id": "Code_46008", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3429", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_103", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_89", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": null, + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_633", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38722", + "standardCode": { + "id": "Code_46009", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_634", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38723", + "standardCode": { + "id": "Code_46010", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_635", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3113", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_46012", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38724", + "standardCode": { + "id": "Code_46011", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_636", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38726", + "standardCode": { + "id": "Code_46013", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_637", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38727", + "standardCode": { + "id": "Code_46014", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_104", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_144", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": null, + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_643", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38734", + "standardCode": { + "id": "Code_46021", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_644", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38735", + "standardCode": { + "id": "Code_46022", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_645", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3115", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46024", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38736", + "standardCode": { + "id": "Code_46023", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_646", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38738", + "standardCode": { + "id": "Code_46025", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_647", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38739", + "standardCode": { + "id": "Code_46026", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_105", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_91", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KETONESURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ketone Measurement", + "label": "Ketone Measurement", + "synonyms": [ + "Ketones" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64854", + "properties": [ + { + "id": "BiomedicalConceptProperty_652", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38745", + "standardCode": { + "id": "Code_46032", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_653", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38746", + "standardCode": { + "id": "Code_46033", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_654", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3117", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46035", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38747", + "standardCode": { + "id": "Code_46034", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_655", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38749", + "standardCode": { + "id": "Code_46036", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_656", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38750", + "standardCode": { + "id": "Code_46037", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24599", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28717", + "extensionAttributes": [], + "code": "C64854", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Ketone Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_106", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_92", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": null, + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_657", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38751", + "standardCode": { + "id": "Code_46038", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_658", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38752", + "standardCode": { + "id": "Code_46039", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_659", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3118", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_46041", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38753", + "standardCode": { + "id": "Code_46040", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_660", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38755", + "standardCode": { + "id": "Code_46042", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_661", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38756", + "standardCode": { + "id": "Code_46043", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_107", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_93", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UROBILURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urobilinogen Measurement", + "label": "Urobilinogen Measurement", + "synonyms": [ + "Urobilinogen", + "UROBIL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64816", + "properties": [ + { + "id": "BiomedicalConceptProperty_667", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38763", + "standardCode": { + "id": "Code_46050", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_668", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38764", + "standardCode": { + "id": "Code_46051", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_669", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3120", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46053", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38765", + "standardCode": { + "id": "Code_46052", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_670", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38767", + "standardCode": { + "id": "Code_46054", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_671", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38768", + "standardCode": { + "id": "Code_46055", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24600", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28718", + "extensionAttributes": [], + "code": "C64816", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urobilinogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_108", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_94", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OCCBLDSTOOL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Occult Blood Measurement", + "label": "Occult Blood Measurement", + "synonyms": [ + "Occult Blood", + "OCCBLD" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74686", + "properties": [ + { + "id": "BiomedicalConceptProperty_676", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38774", + "standardCode": { + "id": "Code_46061", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_677", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3122", + "instanceType": "ResponseCode", + "name": "STOOL", + "label": "STOOL", + "isEnabled": true, + "code": { + "id": "Code_46063", + "extensionAttributes": [], + "code": "C13234", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "STOOL", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38775", + "standardCode": { + "id": "Code_46062", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_678", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38777", + "standardCode": { + "id": "Code_46064", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_679", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38778", + "standardCode": { + "id": "Code_46065", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3566", + "extensionAttributes": [], + "code": "C74686", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occult Blood Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_109", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_95", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NITRITEURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Nitrite Measurement", + "label": "Nitrite Measurement", + "synonyms": [ + "NITRITE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64810", + "properties": [ + { + "id": "BiomedicalConceptProperty_684", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38784", + "standardCode": { + "id": "Code_46071", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_685", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38785", + "standardCode": { + "id": "Code_46072", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_686", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3124", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46074", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38786", + "standardCode": { + "id": "Code_46073", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_687", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38788", + "standardCode": { + "id": "Code_46075", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_688", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38789", + "standardCode": { + "id": "Code_46076", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3567", + "extensionAttributes": [], + "code": "C64810", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Nitrite Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_110", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_96", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C Measurement", + "label": "Hemoglobin A1C Measurement", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64849", + "properties": [ + { + "id": "BiomedicalConceptProperty_703", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38804", + "standardCode": { + "id": "Code_46091", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_704", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3125", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_46093", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38805", + "standardCode": { + "id": "Code_46092", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_705", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38807", + "standardCode": { + "id": "Code_46094", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_706", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38808", + "standardCode": { + "id": "Code_46095", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24601", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28719", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin A1C Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_111", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_97", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CHGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "label": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "synonyms": [ + "Hemoglobin A1C/Hemoglobin", + "HBA1CHGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111207", + "properties": [ + { + "id": "BiomedicalConceptProperty_713", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38816", + "standardCode": { + "id": "Code_46103", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_714", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3127", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_46105", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38817", + "standardCode": { + "id": "Code_46104", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_715", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38819", + "standardCode": { + "id": "Code_46106", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_716", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38820", + "standardCode": { + "id": "Code_46107", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24602", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28720", + "extensionAttributes": [], + "code": "C111207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_112", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_98", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXPOSCOLL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exposure as Collected Domain", + "label": "Exposure as Collected Domain", + "synonyms": [ + "EC", + "Exposure as Collected" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117466", + "properties": [ + { + "id": "BiomedicalConceptProperty_720", + "extensionAttributes": [], + "name": "ECTRT", + "label": "ECTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38825", + "standardCode": { + "id": "Code_46112", + "extensionAttributes": [], + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_721", + "extensionAttributes": [], + "name": "ECREFID", + "label": "ECREFID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38826", + "standardCode": { + "id": "Code_46113", + "extensionAttributes": [], + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_722", + "extensionAttributes": [], + "name": "ECDOSE", + "label": "ECDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38827", + "standardCode": { + "id": "Code_46114", + "extensionAttributes": [], + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_723", + "extensionAttributes": [], + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38828", + "standardCode": { + "id": "Code_46115", + "extensionAttributes": [], + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_724", + "extensionAttributes": [], + "name": "ECDOSU", + "label": "ECDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38829", + "standardCode": { + "id": "Code_46116", + "extensionAttributes": [], + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_725", + "extensionAttributes": [], + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38830", + "standardCode": { + "id": "Code_46117", + "extensionAttributes": [], + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_726", + "extensionAttributes": [], + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38831", + "standardCode": { + "id": "Code_46118", + "extensionAttributes": [], + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_727", + "extensionAttributes": [], + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38832", + "standardCode": { + "id": "Code_46119", + "extensionAttributes": [], + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_728", + "extensionAttributes": [], + "name": "ECROUTE", + "label": "ECROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38833", + "standardCode": { + "id": "Code_46120", + "extensionAttributes": [], + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_729", + "extensionAttributes": [], + "name": "ECLOC", + "label": "ECLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38834", + "standardCode": { + "id": "Code_46121", + "extensionAttributes": [], + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_730", + "extensionAttributes": [], + "name": "ECLAT", + "label": "ECLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38835", + "standardCode": { + "id": "Code_46122", + "extensionAttributes": [], + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_731", + "extensionAttributes": [], + "name": "ECDIR", + "label": "ECDIR", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38836", + "standardCode": { + "id": "Code_46123", + "extensionAttributes": [], + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_732", + "extensionAttributes": [], + "name": "ECSTDTC", + "label": "ECSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38837", + "standardCode": { + "id": "Code_46124", + "extensionAttributes": [], + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_733", + "extensionAttributes": [], + "name": "ECENDTC", + "label": "ECENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38838", + "standardCode": { + "id": "Code_46125", + "extensionAttributes": [], + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24603", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28721", + "extensionAttributes": [], + "code": "C117466", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-10-03", + "decode": "Exposure as Collected Domain", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_113", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "id": "BiomedicalConceptProperty_734", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38839", + "standardCode": { + "id": "Code_46126", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_735", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38840", + "standardCode": { + "id": "Code_46127", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_736", + "extensionAttributes": [], + "name": "Test Occurrence", + "label": "Test Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38841", + "standardCode": { + "id": "Code_46128", + "extensionAttributes": [], + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_114", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_99", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYACCEPTABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Acceptability", + "label": "TTS Acceptability Survey - Patch Acceptability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT4", + "properties": [ + { + "id": "BiomedicalConceptProperty_740", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38846", + "standardCode": { + "id": "Code_46133", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_741", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38847", + "standardCode": { + "id": "Code_46134", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_742", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3130", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46136", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38848", + "standardCode": { + "id": "Code_46135", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24605", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28723", + "extensionAttributes": [], + "code": "NEW_LZZT4", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Acceptability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_115", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_100", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYAPPEARANCE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Appearance", + "label": "TTS Acceptability Survey - Patch Appearance", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT1", + "properties": [ + { + "id": "BiomedicalConceptProperty_748", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38856", + "standardCode": { + "id": "Code_46143", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_749", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38857", + "standardCode": { + "id": "Code_46144", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_750", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3132", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46146", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38858", + "standardCode": { + "id": "Code_46145", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24606", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28724", + "extensionAttributes": [], + "code": "NEW_LZZT1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Appearance", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_116", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_101", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYDURABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Durability", + "label": "TTS Acceptability Survey - Patch Durability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT3", + "properties": [ + { + "id": "BiomedicalConceptProperty_777", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38886", + "standardCode": { + "id": "Code_46173", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_778", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38887", + "standardCode": { + "id": "Code_46174", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_779", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3133", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46176", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38888", + "standardCode": { + "id": "Code_46175", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24607", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28725", + "extensionAttributes": [], + "code": "NEW_LZZT3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Durability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_117", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_102", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYSIZE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Size", + "label": "TTS Acceptability Survey - Patch Size", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT2", + "properties": [ + { + "id": "BiomedicalConceptProperty_780", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38890", + "standardCode": { + "id": "Code_46177", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_781", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38891", + "standardCode": { + "id": "Code_46178", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_782", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3134", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46180", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38892", + "standardCode": { + "id": "Code_46179", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24608", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28726", + "extensionAttributes": [], + "code": "NEW_LZZT2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Size", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_134", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_783", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38894", + "standardCode": { + "id": "Code_46181", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_784", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38895", + "standardCode": { + "id": "Code_46182", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_135", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_103", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Adverse Event", + "label": "Solicited Adverse Event", + "synonyms": [ + "Adverse Event" + ], + "reference": "/mdr/bc/biomedicalconcepts/C179175", + "properties": [ + { + "id": "BiomedicalConceptProperty_785", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38896", + "standardCode": { + "id": "Code_46183", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_786", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38897", + "standardCode": { + "id": "Code_46184", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_787", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38898", + "standardCode": { + "id": "Code_46185", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_788", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38899", + "standardCode": { + "id": "Code_46186", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_789", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38900", + "standardCode": { + "id": "Code_46187", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_790", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38901", + "standardCode": { + "id": "Code_46188", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_791", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38902", + "standardCode": { + "id": "Code_46189", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_792", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38903", + "standardCode": { + "id": "Code_46190", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_793", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38904", + "standardCode": { + "id": "Code_46191", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_794", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38905", + "standardCode": { + "id": "Code_46192", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_795", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38906", + "standardCode": { + "id": "Code_46193", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_796", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38907", + "standardCode": { + "id": "Code_46194", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_797", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38908", + "standardCode": { + "id": "Code_46195", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_798", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38909", + "standardCode": { + "id": "Code_46196", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_799", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38910", + "standardCode": { + "id": "Code_46197", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_800", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38911", + "standardCode": { + "id": "Code_46198", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_801", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38912", + "standardCode": { + "id": "Code_46199", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_802", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38913", + "standardCode": { + "id": "Code_46200", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_803", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38914", + "standardCode": { + "id": "Code_46201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_804", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38915", + "standardCode": { + "id": "Code_46202", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_805", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38916", + "standardCode": { + "id": "Code_46203", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_806", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38917", + "standardCode": { + "id": "Code_46204", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_807", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38918", + "standardCode": { + "id": "Code_46205", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_808", + "extensionAttributes": [], + "name": "AEENRF", + "label": "AEENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38919", + "standardCode": { + "id": "Code_46206", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_809", + "extensionAttributes": [], + "name": "AEENRTPT", + "label": "AEENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38920", + "standardCode": { + "id": "Code_46207", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_810", + "extensionAttributes": [], + "name": "AEENTPT", + "label": "AEENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38921", + "standardCode": { + "id": "Code_46208", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24610", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28728", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_136", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_104", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTCOMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Complete", + "label": "Complete", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C25250", + "properties": [], + "code": { + "id": "AliasCode_24611", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28729", + "extensionAttributes": [], + "code": "C25250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Complete [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_137", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_105", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/FAILCONT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Failure To Meet Continuation Criteria", + "label": "Failure To Meet Continuation Criteria", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C139236", + "properties": [], + "code": { + "id": "AliasCode_24612", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28730", + "extensionAttributes": [], + "code": "C139236", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Failure To Meet Continuation Criteria [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_138", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_106", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DEAD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Dead", + "label": "Dead", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28554", + "properties": [], + "code": { + "id": "AliasCode_24613", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28731", + "extensionAttributes": [], + "code": "C28554", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Dead [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_139", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_107", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LACKEFFICACY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lack of Efficacy", + "label": "Lack of Efficacy", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48226", + "properties": [], + "code": { + "id": "AliasCode_24614", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28732", + "extensionAttributes": [], + "code": "C48226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lack of Efficacy [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_140", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_108", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LTFUP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lost To Follow-Up", + "label": "Lost To Follow-Up", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48227", + "properties": [], + "code": { + "id": "AliasCode_24615", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28733", + "extensionAttributes": [], + "code": "C48227", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lost To Follow-Up [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_141", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_109", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_142", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_110", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHYDECISION", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Physician Decision", + "label": "Physician Decision", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48250", + "properties": [], + "code": { + "id": "AliasCode_24617", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28735", + "extensionAttributes": [], + "code": "C48250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Physician Decision [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_143", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_111", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJPREG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pregnant Subject", + "label": "Pregnant Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C191656", + "properties": [], + "code": { + "id": "AliasCode_24618", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28736", + "extensionAttributes": [], + "code": "C191656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Pregnant Subject [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_144", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_112", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROGDISEASE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Progressive Disease", + "label": "Progressive Disease", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C35571", + "properties": [], + "code": { + "id": "AliasCode_24619", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28737", + "extensionAttributes": [], + "code": "C35571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Progressive Disease [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_145", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_113", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTDEV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Protocol Deviation", + "label": "Protocol Deviation", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C50996", + "properties": [], + "code": { + "id": "AliasCode_1747", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1937", + "extensionAttributes": [], + "code": "C50996", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Protocol Deviation", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_146", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_114", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SITETRANSFER", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Study Site Transfer", + "label": "Study Site Transfer", + "synonyms": [ + "Site Transfer", + "Study Subject Site Transfer" + ], + "reference": "/mdr/bc/biomedicalconcepts/C186208", + "properties": [ + { + "id": "BiomedicalConceptProperty_811", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3135", + "instanceType": "ResponseCode", + "name": "SITE TRANSFER", + "label": "SITE TRANSFER", + "isEnabled": true, + "code": { + "id": "Code_46210", + "extensionAttributes": [], + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SITE TRANSFER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38922", + "standardCode": { + "id": "Code_46209", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_812", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38924", + "standardCode": { + "id": "Code_46211", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_813", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38925", + "standardCode": { + "id": "Code_46212", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1753", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1943", + "extensionAttributes": [], + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Site Transfer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_147", + "extensionAttributes": [], + "name": "Study Terminated By Sponsor", + "label": "Study Terminated By Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49632", + "properties": [], + "code": { + "id": "AliasCode_1758", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1948", + "extensionAttributes": [], + "code": "C49632", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Terminated By Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_148", + "extensionAttributes": [], + "name": "Subject Removed at Sponsor Request", + "label": "Subject Removed at Sponsor Request", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C161410", + "properties": [], + "code": { + "id": "AliasCode_29205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_33323", + "extensionAttributes": [], + "code": "C161410", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Subject Removed at Sponsor Request [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_149", + "extensionAttributes": [], + "name": "Trial Screen Failure", + "label": "Trial Screen Failure", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49628", + "properties": [], + "code": { + "id": "AliasCode_1760", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1950", + "extensionAttributes": [], + "code": "C49628", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Screen Failure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_150", + "extensionAttributes": [], + "name": "Trial Site Terminated by Sponsor", + "label": "Trial Site Terminated by Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106576", + "properties": [], + "code": { + "id": "AliasCode_1761", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1951", + "extensionAttributes": [], + "code": "C106576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Site Terminated by Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_151", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_115", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJWITHDRAW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal by Subject", + "label": "Withdrawal by Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49634", + "properties": [], + "code": { + "id": "AliasCode_1762", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1952", + "extensionAttributes": [], + "code": "C49634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal by Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_152", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_116", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSWDRL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal of Consent From Protocol-Specified Activity", + "label": "Withdrawal of Consent From Protocol-Specified Activity", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C170610", + "properties": [ + { + "id": "BiomedicalConceptProperty_823", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3138", + "instanceType": "ResponseCode", + "name": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "label": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "isEnabled": true, + "code": { + "id": "Code_46225", + "extensionAttributes": [], + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38937", + "standardCode": { + "id": "Code_46224", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_824", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38939", + "standardCode": { + "id": "Code_46226", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_825", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38940", + "standardCode": { + "id": "Code_46227", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_38009", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45296", + "extensionAttributes": [], + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal of Consent From Protocol-Specified Activity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_153", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_117", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_832", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38948", + "standardCode": { + "id": "Code_46235", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_833", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3140", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46237", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38949", + "standardCode": { + "id": "Code_46236", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_834", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38951", + "standardCode": { + "id": "Code_46238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_835", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38952", + "standardCode": { + "id": "Code_46239", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_836", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38953", + "standardCode": { + "id": "Code_46240", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_837", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38954", + "standardCode": { + "id": "Code_46241", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_154", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_118", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_862", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38983", + "standardCode": { + "id": "Code_46270", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_863", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3145", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46272", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38984", + "standardCode": { + "id": "Code_46271", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_864", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38986", + "standardCode": { + "id": "Code_46273", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_865", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38987", + "standardCode": { + "id": "Code_46274", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_866", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38988", + "standardCode": { + "id": "Code_46275", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_867", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38989", + "standardCode": { + "id": "Code_46276", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_155", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_119", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_880", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39002", + "standardCode": { + "id": "Code_46289", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_881", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3146", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_46291", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39003", + "standardCode": { + "id": "Code_46290", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_882", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39005", + "standardCode": { + "id": "Code_46292", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_883", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39006", + "standardCode": { + "id": "Code_46293", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_884", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39007", + "standardCode": { + "id": "Code_46294", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_885", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39008", + "standardCode": { + "id": "Code_46295", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_156", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_120", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_886", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39009", + "standardCode": { + "id": "Code_46296", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_887", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3147", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46298", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39010", + "standardCode": { + "id": "Code_46297", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_888", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39012", + "standardCode": { + "id": "Code_46299", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_889", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39013", + "standardCode": { + "id": "Code_46300", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_890", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39014", + "standardCode": { + "id": "Code_46301", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_891", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39015", + "standardCode": { + "id": "Code_46302", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_157", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_121", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_892", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39016", + "standardCode": { + "id": "Code_46303", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_893", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3148", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46305", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39017", + "standardCode": { + "id": "Code_46304", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_894", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39019", + "standardCode": { + "id": "Code_46306", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_895", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39020", + "standardCode": { + "id": "Code_46307", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_896", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39021", + "standardCode": { + "id": "Code_46308", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_897", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39022", + "standardCode": { + "id": "Code_46309", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_158", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_122", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_898", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39023", + "standardCode": { + "id": "Code_46310", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_899", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3149", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_46312", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39024", + "standardCode": { + "id": "Code_46311", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_900", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39026", + "standardCode": { + "id": "Code_46313", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_901", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39027", + "standardCode": { + "id": "Code_46314", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_902", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39028", + "standardCode": { + "id": "Code_46315", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_903", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39029", + "standardCode": { + "id": "Code_46316", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_159", + "extensionAttributes": [], + "name": "Isometric Muscle Strength", + "label": "Isometric Muscle Strength", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C138967", + "properties": [], + "code": { + "id": "AliasCode_2312", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2502", + "extensionAttributes": [], + "code": "C138967", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Isometric Muscle Strength", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_160", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_129", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SMMASS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Skeletal Muscle Mass Measurement", + "label": "Skeletal Muscle Mass Measurement", + "synonyms": [ + "SMMASS", + "Skeletal Muscle Mass" + ], + "reference": "/mdr/bc/biomedicalconcepts/C178017", + "properties": [ + { + "id": "BiomedicalConceptProperty_920", + "extensionAttributes": [], + "name": "MKORRES", + "label": "MKORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_39050", + "standardCode": { + "id": "Code_46337", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_921", + "extensionAttributes": [], + "name": "MKORRESU", + "label": "MKORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39051", + "standardCode": { + "id": "Code_46338", + "extensionAttributes": [], + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_922", + "extensionAttributes": [], + "name": "MKLOC", + "label": "MKLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39052", + "standardCode": { + "id": "Code_46339", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_923", + "extensionAttributes": [], + "name": "MKLAT", + "label": "MKLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39053", + "standardCode": { + "id": "Code_46340", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_924", + "extensionAttributes": [], + "name": "MKMETHOD", + "label": "MKMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39054", + "standardCode": { + "id": "Code_46341", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_925", + "extensionAttributes": [], + "name": "MKDTC", + "label": "MKDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39055", + "standardCode": { + "id": "Code_46342", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2313", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2503", + "extensionAttributes": [], + "code": "C178017", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Skeletal Muscle Mass Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_161", + "extensionAttributes": [], + "name": "Muscle Endurance Measurement", + "label": "Muscle Endurance Measurement", + "synonyms": [ + "ENDURM", + "Muscle Endurance" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181501", + "properties": [ + { + "id": "BiomedicalConceptProperty_933", + "extensionAttributes": [], + "name": "Observation Result", + "label": "Observation Result", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39064", + "standardCode": { + "id": "Code_46351", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_934", + "extensionAttributes": [], + "name": "Unit of Time", + "label": "Unit of Time", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39065", + "standardCode": { + "id": "Code_46352", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_935", + "extensionAttributes": [], + "name": "Anatomic Site", + "label": "Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39066", + "standardCode": { + "id": "Code_46353", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_936", + "extensionAttributes": [], + "name": "Laterality", + "label": "Laterality", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39067", + "standardCode": { + "id": "Code_46354", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_937", + "extensionAttributes": [], + "name": "Test Method", + "label": "Test Method", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39068", + "standardCode": { + "id": "Code_46355", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_938", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39069", + "standardCode": { + "id": "Code_46356", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24620", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28738", + "extensionAttributes": [], + "code": "C181501", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Muscle Endurance Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_162", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_139", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "id": "BiomedicalConceptProperty_949", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3155", + "instanceType": "ResponseCode", + "name": "EGCTMON", + "label": "EGCTMON", + "isEnabled": true, + "code": { + "id": "Code_46368", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39080", + "standardCode": { + "id": "Code_46367", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_950", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3156", + "instanceType": "ResponseCode", + "name": "ECG Continuous Monitoring", + "label": "ECG Continuous Monitoring", + "isEnabled": true, + "code": { + "id": "Code_46370", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39082", + "standardCode": { + "id": "Code_46369", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_951", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_39084", + "standardCode": { + "id": "Code_46371", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_952", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39085", + "standardCode": { + "id": "Code_46372", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_953", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39086", + "standardCode": { + "id": "Code_46373", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_954", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39087", + "standardCode": { + "id": "Code_46374", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_164", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "id": "BiomedicalConceptProperty_955", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39088", + "standardCode": { + "id": "Code_46375", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_956", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39089", + "standardCode": { + "id": "Code_46376", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_957", + "extensionAttributes": [], + "name": "Test Occurrence", + "label": "Test Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39090", + "standardCode": { + "id": "Code_46377", + "extensionAttributes": [], + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_165", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_141", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "id": "BiomedicalConceptProperty_974", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39107", + "standardCode": { + "id": "Code_46394", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_975", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3157", + "instanceType": "ResponseCode", + "name": "MRI", + "label": "MRI", + "isEnabled": true, + "code": { + "id": "Code_46396", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39108", + "standardCode": { + "id": "Code_46395", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_976", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39110", + "standardCode": { + "id": "Code_46397", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_977", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39111", + "standardCode": { + "id": "Code_46398", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_978", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3158", + "instanceType": "ResponseCode", + "name": "BRAIN", + "label": "BRAIN", + "isEnabled": true, + "code": { + "id": "Code_46400", + "extensionAttributes": [], + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39112", + "standardCode": { + "id": "Code_46399", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_979", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39114", + "standardCode": { + "id": "Code_46401", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_980", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39115", + "standardCode": { + "id": "Code_46402", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_166", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_142", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCAN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "id": "BiomedicalConceptProperty_997", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39132", + "standardCode": { + "id": "Code_46419", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_998", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3159", + "instanceType": "ResponseCode", + "name": "CT SCAN", + "label": "CT SCAN", + "isEnabled": true, + "code": { + "id": "Code_46421", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39133", + "standardCode": { + "id": "Code_46420", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_999", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39135", + "standardCode": { + "id": "Code_46422", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1000", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39136", + "standardCode": { + "id": "Code_46423", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1001", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39137", + "standardCode": { + "id": "Code_46424", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1002", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39138", + "standardCode": { + "id": "Code_46425", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1003", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39139", + "standardCode": { + "id": "Code_46426", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_168", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_169", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_170", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_143", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_171", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_1012", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39148", + "standardCode": { + "id": "Code_46435", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1013", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39149", + "standardCode": { + "id": "Code_46436", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_172", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recall Average Score", + "label": "CDISC ADAS-Cog - Word Recall Average Score", + "synonyms": [ + "ADCRL", + "Word Recall", + "CDISC ADAS-Cog - Word Recall Average Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100177", + "properties": [ + { + "id": "BiomedicalConceptProperty_1022", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39158", + "standardCode": { + "id": "Code_46445", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1023", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39159", + "standardCode": { + "id": "Code_46446", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1024", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39160", + "standardCode": { + "id": "Code_46447", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1025", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39161", + "standardCode": { + "id": "Code_46448", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1026", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39162", + "standardCode": { + "id": "Code_46449", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1027", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39163", + "standardCode": { + "id": "Code_46450", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1028", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39164", + "standardCode": { + "id": "Code_46451", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1029", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39165", + "standardCode": { + "id": "Code_46452", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24622", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28740", + "extensionAttributes": [], + "code": "C100177", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recall Average Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_173", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "label": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "synonyms": [ + "ADCOF", + "Naming Objects and Fingers", + "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100191", + "properties": [ + { + "id": "BiomedicalConceptProperty_1030", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39166", + "standardCode": { + "id": "Code_46453", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1031", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39167", + "standardCode": { + "id": "Code_46454", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1032", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39168", + "standardCode": { + "id": "Code_46455", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1033", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39169", + "standardCode": { + "id": "Code_46456", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1034", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39170", + "standardCode": { + "id": "Code_46457", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1035", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39171", + "standardCode": { + "id": "Code_46458", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1036", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39172", + "standardCode": { + "id": "Code_46459", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1037", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39173", + "standardCode": { + "id": "Code_46460", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31360", + "extensionAttributes": [], + "code": "C100191", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_174", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Commands Summary Score", + "label": "CDISC ADAS-Cog - Commands Summary Score", + "synonyms": [ + "ADCCMD", + "Commands", + "CDISC ADAS-Cog - Commands Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100209", + "properties": [ + { + "id": "BiomedicalConceptProperty_1046", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39182", + "standardCode": { + "id": "Code_46469", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1047", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39183", + "standardCode": { + "id": "Code_46470", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1048", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39184", + "standardCode": { + "id": "Code_46471", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1049", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39185", + "standardCode": { + "id": "Code_46472", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1050", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39186", + "standardCode": { + "id": "Code_46473", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1051", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39187", + "standardCode": { + "id": "Code_46474", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1052", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39188", + "standardCode": { + "id": "Code_46475", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1053", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39189", + "standardCode": { + "id": "Code_46476", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24623", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28741", + "extensionAttributes": [], + "code": "C100209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Commands Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_175", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "label": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "synonyms": [ + "ADCDRL", + "Delayed Word Recall", + "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100215", + "properties": [ + { + "id": "BiomedicalConceptProperty_1062", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39198", + "standardCode": { + "id": "Code_46485", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1063", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39199", + "standardCode": { + "id": "Code_46486", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1064", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39200", + "standardCode": { + "id": "Code_46487", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1065", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39201", + "standardCode": { + "id": "Code_46488", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1066", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39202", + "standardCode": { + "id": "Code_46489", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1067", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39203", + "standardCode": { + "id": "Code_46490", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1068", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39204", + "standardCode": { + "id": "Code_46491", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1069", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39205", + "standardCode": { + "id": "Code_46492", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31361", + "extensionAttributes": [], + "code": "C100215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_176", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "label": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "synonyms": [ + "ADCCP", + "Constructional Praxis", + "CDISC ADAS-Cog - Constructional Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100226", + "properties": [ + { + "id": "BiomedicalConceptProperty_1078", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39214", + "standardCode": { + "id": "Code_46501", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1079", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39215", + "standardCode": { + "id": "Code_46502", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1080", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39216", + "standardCode": { + "id": "Code_46503", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1081", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39217", + "standardCode": { + "id": "Code_46504", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1082", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39218", + "standardCode": { + "id": "Code_46505", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1083", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39219", + "standardCode": { + "id": "Code_46506", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1084", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39220", + "standardCode": { + "id": "Code_46507", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1085", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39221", + "standardCode": { + "id": "Code_46508", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31362", + "extensionAttributes": [], + "code": "C100226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_177", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "label": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "synonyms": [ + "ADCIP", + "Ideational Praxis", + "CDISC ADAS-Cog - Ideational Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100232", + "properties": [ + { + "id": "BiomedicalConceptProperty_1094", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39230", + "standardCode": { + "id": "Code_46517", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1095", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39231", + "standardCode": { + "id": "Code_46518", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1096", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39232", + "standardCode": { + "id": "Code_46519", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1097", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39233", + "standardCode": { + "id": "Code_46520", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1098", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39234", + "standardCode": { + "id": "Code_46521", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1099", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39235", + "standardCode": { + "id": "Code_46522", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1100", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39236", + "standardCode": { + "id": "Code_46523", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1101", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39237", + "standardCode": { + "id": "Code_46524", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24624", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28742", + "extensionAttributes": [], + "code": "C100232", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_178", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Orientation Summary Score", + "label": "CDISC ADAS-Cog - Orientation Summary Score", + "synonyms": [ + "ADCOR", + "Orientation", + "CDISC ADAS-Cog - Orientation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100238", + "properties": [ + { + "id": "BiomedicalConceptProperty_1110", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39246", + "standardCode": { + "id": "Code_46533", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1111", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39247", + "standardCode": { + "id": "Code_46534", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1112", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39248", + "standardCode": { + "id": "Code_46535", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1113", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39249", + "standardCode": { + "id": "Code_46536", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1114", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39250", + "standardCode": { + "id": "Code_46537", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1115", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39251", + "standardCode": { + "id": "Code_46538", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1116", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39252", + "standardCode": { + "id": "Code_46539", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1117", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39253", + "standardCode": { + "id": "Code_46540", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31363", + "extensionAttributes": [], + "code": "C100238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Orientation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_179", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recognition Summary Score", + "label": "CDISC ADAS-Cog - Word Recognition Summary Score", + "synonyms": [ + "ADCRG", + "Word Recognition", + "CDISC ADAS-Cog - Word Recognition Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100247", + "properties": [ + { + "id": "BiomedicalConceptProperty_1126", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39262", + "standardCode": { + "id": "Code_46549", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1127", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39263", + "standardCode": { + "id": "Code_46550", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1128", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39264", + "standardCode": { + "id": "Code_46551", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1129", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39265", + "standardCode": { + "id": "Code_46552", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1130", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39266", + "standardCode": { + "id": "Code_46553", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39267", + "standardCode": { + "id": "Code_46554", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1132", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39268", + "standardCode": { + "id": "Code_46555", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1133", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39269", + "standardCode": { + "id": "Code_46556", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24625", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28743", + "extensionAttributes": [], + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_180", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Remembering Test Instructions", + "label": "CDISC ADAS-Cog - Remembering Test Instructions", + "synonyms": [ + "ADCRI", + "Remembering Test Instructions", + "CDISC ADAS-Cog - Remembering Test Instructions" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100275", + "properties": [ + { + "id": "BiomedicalConceptProperty_1142", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39278", + "standardCode": { + "id": "Code_46565", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1143", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39279", + "standardCode": { + "id": "Code_46566", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1144", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39280", + "standardCode": { + "id": "Code_46567", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1145", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39281", + "standardCode": { + "id": "Code_46568", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1146", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39282", + "standardCode": { + "id": "Code_46569", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1147", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39283", + "standardCode": { + "id": "Code_46570", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1148", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39284", + "standardCode": { + "id": "Code_46571", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1149", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39285", + "standardCode": { + "id": "Code_46572", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24626", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28744", + "extensionAttributes": [], + "code": "C100275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Remembering Test Instructions", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_181", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Spoken Language Ability", + "label": "CDISC ADAS-Cog - Spoken Language Ability", + "synonyms": [ + "ADCSL", + "Spoken Language Ability", + "CDISC ADAS-Cog - Spoken Language Ability" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100276", + "properties": [ + { + "id": "BiomedicalConceptProperty_1167", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39303", + "standardCode": { + "id": "Code_46590", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1168", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39304", + "standardCode": { + "id": "Code_46591", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1169", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39305", + "standardCode": { + "id": "Code_46592", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1170", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39306", + "standardCode": { + "id": "Code_46593", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1171", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39307", + "standardCode": { + "id": "Code_46594", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1172", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39308", + "standardCode": { + "id": "Code_46595", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1173", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39309", + "standardCode": { + "id": "Code_46596", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1174", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39310", + "standardCode": { + "id": "Code_46597", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24627", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28745", + "extensionAttributes": [], + "code": "C100276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Spoken Language Ability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_182", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "label": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "synonyms": [ + "ADCDIF", + "Word Finding Difficulty in Spont Speech", + "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100277", + "properties": [ + { + "id": "BiomedicalConceptProperty_1181", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39319", + "standardCode": { + "id": "Code_46606", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1182", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39320", + "standardCode": { + "id": "Code_46607", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1183", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39321", + "standardCode": { + "id": "Code_46608", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1184", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39322", + "standardCode": { + "id": "Code_46609", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1185", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39323", + "standardCode": { + "id": "Code_46610", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1186", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39324", + "standardCode": { + "id": "Code_46611", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1187", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39325", + "standardCode": { + "id": "Code_46612", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1188", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39326", + "standardCode": { + "id": "Code_46613", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24628", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28746", + "extensionAttributes": [], + "code": "C100277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_183", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Comprehension", + "label": "CDISC ADAS-Cog - Comprehension", + "synonyms": [ + "ADCCMP", + "Comprehension", + "CDISC ADAS-Cog - Comprehension" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100278", + "properties": [ + { + "id": "BiomedicalConceptProperty_1189", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39327", + "standardCode": { + "id": "Code_46614", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1190", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39328", + "standardCode": { + "id": "Code_46615", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1191", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39329", + "standardCode": { + "id": "Code_46616", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1192", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39330", + "standardCode": { + "id": "Code_46617", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1193", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39331", + "standardCode": { + "id": "Code_46618", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1194", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39332", + "standardCode": { + "id": "Code_46619", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1195", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39333", + "standardCode": { + "id": "Code_46620", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1196", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39334", + "standardCode": { + "id": "Code_46621", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24629", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28747", + "extensionAttributes": [], + "code": "C100278", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Comprehension", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_184", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Concentration/Distractibility", + "label": "CDISC ADAS-Cog - Concentration/Distractibility", + "synonyms": [ + "ADCCON", + "Concentration/Distractibility", + "CDISC ADAS-Cog - Concentration/Distractibility" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100279", + "properties": [ + { + "id": "BiomedicalConceptProperty_1197", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39335", + "standardCode": { + "id": "Code_46622", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1198", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39336", + "standardCode": { + "id": "Code_46623", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1199", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39337", + "standardCode": { + "id": "Code_46624", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1200", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39338", + "standardCode": { + "id": "Code_46625", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1201", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39339", + "standardCode": { + "id": "Code_46626", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1202", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39340", + "standardCode": { + "id": "Code_46627", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1203", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39341", + "standardCode": { + "id": "Code_46628", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1204", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39342", + "standardCode": { + "id": "Code_46629", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24630", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28748", + "extensionAttributes": [], + "code": "C100279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Concentration/Distractibility", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_185", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "label": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "synonyms": [ + "ADCNC", + "Number Cancellation", + "CDISC ADAS-Cog - Number Cancellation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100280", + "properties": [ + { + "id": "BiomedicalConceptProperty_1205", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39343", + "standardCode": { + "id": "Code_46630", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1206", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39344", + "standardCode": { + "id": "Code_46631", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1207", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39345", + "standardCode": { + "id": "Code_46632", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1208", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39346", + "standardCode": { + "id": "Code_46633", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1209", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39347", + "standardCode": { + "id": "Code_46634", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1210", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39348", + "standardCode": { + "id": "Code_46635", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1211", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39349", + "standardCode": { + "id": "Code_46636", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1212", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39350", + "standardCode": { + "id": "Code_46637", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24631", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28749", + "extensionAttributes": [], + "code": "C100280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_186", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "label": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "synonyms": [ + "ADCMZ01", + "Executive Function Maze: Errors", + "CDISC ADAS-Cog - Executive Function Maze: Errors" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100285", + "properties": [ + { + "id": "BiomedicalConceptProperty_1213", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39351", + "standardCode": { + "id": "Code_46638", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1214", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39352", + "standardCode": { + "id": "Code_46639", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1215", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39353", + "standardCode": { + "id": "Code_46640", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1216", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39354", + "standardCode": { + "id": "Code_46641", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1217", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39355", + "standardCode": { + "id": "Code_46642", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1218", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39356", + "standardCode": { + "id": "Code_46643", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1219", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39357", + "standardCode": { + "id": "Code_46644", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1220", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39358", + "standardCode": { + "id": "Code_46645", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24632", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28750", + "extensionAttributes": [], + "code": "C100285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_187", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Time", + "label": "CDISC ADAS-Cog - Executive Function Maze: Time", + "synonyms": [ + "ADCMZ02", + "Executive Function Maze: Time", + "CDISC ADAS-Cog - Executive Function Maze: Time" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100286", + "properties": [ + { + "id": "BiomedicalConceptProperty_1221", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39359", + "standardCode": { + "id": "Code_46646", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1222", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39360", + "standardCode": { + "id": "Code_46647", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1223", + "extensionAttributes": [], + "name": "Unit of Time", + "label": "Unit of Time", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39361", + "standardCode": { + "id": "Code_46648", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1224", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39362", + "standardCode": { + "id": "Code_46649", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1225", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39363", + "standardCode": { + "id": "Code_46650", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1226", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39364", + "standardCode": { + "id": "Code_46651", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1227", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39365", + "standardCode": { + "id": "Code_46652", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1228", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39366", + "standardCode": { + "id": "Code_46653", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1229", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39367", + "standardCode": { + "id": "Code_46654", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24633", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28751", + "extensionAttributes": [], + "code": "C100286", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_163", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_140", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "id": "BiomedicalConceptProperty_1230", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3160", + "instanceType": "ResponseCode", + "name": "EGCTMON", + "label": "EGCTMON", + "isEnabled": true, + "code": { + "id": "Code_46656", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39368", + "standardCode": { + "id": "Code_46655", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1231", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3161", + "instanceType": "ResponseCode", + "name": "ECG Continuous Monitoring", + "label": "ECG Continuous Monitoring", + "isEnabled": true, + "code": { + "id": "Code_46658", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39370", + "standardCode": { + "id": "Code_46657", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1232", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_39372", + "standardCode": { + "id": "Code_46659", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1233", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39373", + "standardCode": { + "id": "Code_46660", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1234", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39374", + "standardCode": { + "id": "Code_46661", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1235", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39375", + "standardCode": { + "id": "Code_46662", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_9", + "extensionAttributes": [], + "name": "MHIS-NACC / MHIS01", + "label": "Modified Hachinski Ischemic Scale (C112523)", + "description": "Modified Hachinski Ischemic Scale-NACC Version Questionnaire", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112523", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_10", + "extensionAttributes": [], + "name": "MHIS0101", + "label": "Abrupt Onset (C112618)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Abrupt onset (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112618", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_11", + "extensionAttributes": [], + "name": "MHIS0102", + "label": "Stepwise Deterioration (C112619)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Stepwise deterioration (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112619", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_12", + "extensionAttributes": [], + "name": "MHIS0103", + "label": "Emotional Incontinence (C112620)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Emotional incontinence.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112620", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_13", + "extensionAttributes": [], + "name": "MHIS0104", + "label": "History or Presence of Hypertension (C112621)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History or presence of hypertension.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112621", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_14", + "extensionAttributes": [], + "name": "MHIS0105", + "label": "History of Stroke (C112622)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History of stroke.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112622", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_15", + "extensionAttributes": [], + "name": "MHIS0106", + "label": "Focal Neurological Symptoms (C112623)", + "description": "MHIS-NACC - Focal Neurological Symptoms", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_16", + "extensionAttributes": [], + "name": "MHIS0107", + "label": "Focal Neurological Signs (C112624)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Focal neurological signs.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_17", + "extensionAttributes": [], + "name": "MHIS0108", + "label": "Somatic Complaints (C112813)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Somatic complaints.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112813", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_18", + "extensionAttributes": [], + "name": "MHIS0109", + "label": "Total Score (C112625)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Sum all circled answers for a total score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "APOE Gene", + "label": "APOE Gene (C84468)", + "description": "This gene is involved in lipid transport and metabolism.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C84468", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Mini-Mental Status Exam", + "label": "Mini-Mental Status Exam (C74982)", + "description": "Mini-Mental State Examination (MMSE) (MMSE Copyright 1975, 1998, 2001 by MiniMental, LLC All rights reserved. Published 2001 by Psychological Assessment Resources, Inc. May not be reproduced in whole or in part in any form or by any means without written permission of Psychological Assessment Resources, Inc.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C74982", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "MMSE - Question 1", + "label": "MMSE - Question 1 (C100542)", + "description": "The Mini-Mental State Examination (MMSE) Question 1.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100542", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "MMSE - Question 2", + "label": "MMSE - Question 2 (C100548)", + "description": "The Mini-Mental State Examination (MMSE) Question 2.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100548", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "MMSE - Question 3", + "label": "MMSE - Question 3 (C100554)", + "description": "The Mini-Mental State Examination (MMSE) Question 3.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100554", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "MMSE - Question 4", + "label": "MMSE - Question 4 (C100558)", + "description": "The Mini-Mental State Examination (MMSE) Question 4.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100558", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_25", + "extensionAttributes": [], + "name": "MMSE - Question 6", + "label": "MMSE - Question 6 (C100575)", + "description": "The Mini-Mental State Examination (MMSE) Question 6.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100575", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_26", + "extensionAttributes": [], + "name": "MMSE Functional Test Question", + "label": "MMSE Functional Test Question (C100118)", + "description": "A question associated with the MMSE functional test.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100118", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_27", + "extensionAttributes": [], + "name": "ADCS-CGIC", + "label": "ADCS-CGIC Questionnaire Question (C103490)", + "description": "A question associated with the ADCS-CGIC questionnaire.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_28", + "extensionAttributes": [], + "name": "DAD", + "label": "Disability Assessment for Dementia Questionnaire (C105165)", + "description": "Disability Assessment for Dementia (DAD) (copyright 1994 by L. Gauthier I. Gelinas. All rights reserved.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C105165", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_29", + "extensionAttributes": [], + "name": "NPI - NPI Total Distress Score", + "label": "NPI - NPI Total Distress Score (C112482)", + "description": "Neuropsychiatric Inventory - Sub-total of distress score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112482", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_30", + "extensionAttributes": [], + "name": "NPI - Anxiety Severity", + "label": "NPI - Anxiety Severity (C103615)", + "description": "Neuropsychiatric Inventory - Severity of the anxiety.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103615", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_31", + "extensionAttributes": [], + "name": "NPI - Disinhibition Frequency", + "label": "NPI - Disinhibition Frequency (C103623)", + "description": "Neuropsychiatric Inventory - Frequency of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_32", + "extensionAttributes": [], + "name": "NPI - Disinhibition Severity", + "label": "NPI - Disinhibition Severity (C103624)", + "description": "Neuropsychiatric Inventory - Severity of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_33", + "extensionAttributes": [], + "name": "NPI - Disinhibition Distress", + "label": "NPI - Disinhibition Distress (C103625)", + "description": "Neuropsychiatric Inventory - How emotionally distressing do you find this behavior?", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_34", + "extensionAttributes": [], + "name": "NPI - Disinhibition FxS Score", + "label": "NPI - Disinhibition FxS Score (C112476)", + "description": "Neuropsychiatric Inventory - Disinhibition: (frequency score x severity score).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112476", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "pi-fix-bc-props-specs-in-usdm" +} diff --git a/output/json/NCT12345678-usdm-20260716T1124.json b/output/json/NCT12345678-usdm-20260716T1124.json new file mode 100644 index 0000000..acffcfe --- /dev/null +++ b/output/json/NCT12345678-usdm-20260716T1124.json @@ -0,0 +1,33031 @@ +{ + "study": { + "id": "Study_3", + "extensionAttributes": [], + "name": "NCT12345678", + "description": "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", + "label": "CDISC Pilot LZZT", + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_153", + "url": "http://www.cdisc.org/usdm/extensions/studyDesignSolution", + "valueExtensionClass": { + "id": "ExtensionClass_1", + "url": "http://www.cdisc.org/usdm/extensions/StudyDesignSolution", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_154", + "url": "tool-name", + "valueString": "SoA Workbench", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_155", + "url": "tool-version", + "valueString": "pi-fix-bc-props-specs-in-usdm", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_156", + "url": "usdm-creation-date", + "valueString": "20260716T11:24", + "instanceType": "ExtensionAttribute" + } + ], + "instanceType": "ExtensionClass" + }, + "instanceType": "ExtensionAttribute" + } + ], + "versionIdentifier": "1", + "rationale": "", + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "H2Q-MC-LZZT", + "label": "CDISC Pilot LZZT", + "description": "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", + "studyType": null, + "studyPhase": null, + "therapeuticAreas": [], + "characteristics": [], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_55", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": "Timing_1", + "environmentalSettings": [ + { + "id": "Code_84", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_164", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_17", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_18", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_2", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_85", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_165", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_19", + "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": "DOSE", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": "Timing_3", + "environmentalSettings": [ + { + "id": "Code_86", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_166", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_20", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_21", + "extensionAttributes": [], + "name": "ENCOUNTER_END_RULE_5", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_87", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_167", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_88", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_168", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_60", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_89", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_169", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_61", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_90", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_170", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_8", + "environmentalSettings": [ + { + "id": "Code_92", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_171", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_13", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_94", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_172", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_13", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_67", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": "Encounter_15", + "scheduledAtId": "Timing_10", + "environmentalSettings": [ + { + "id": "Code_96", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_173", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_15", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_13", + "nextId": "Encounter_16", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_98", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_174", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_16", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_70", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_15", + "nextId": null, + "scheduledAtId": "Timing_12", + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C211570", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_175", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "/mdr/ct/packages/sdtmct-2025-09-26", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_22", + "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": "Informed consent activity", + "previousId": null, + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_1" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "Inclusion/Exclusion Criteria", + "label": "Inclusion/Exclusion Criteria", + "description": "Inclusion/Exclusion Criteria activity", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_4" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "Patient number assigned", + "label": "Patient Number assigned", + "description": "Patient Number assigned activity", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_5" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "Demographics", + "label": "Demographics", + "description": "Demographics activity", + "previousId": "Activity_3", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_6", + "BiomedicalConcept_7", + "BiomedicalConcept_8", + "BiomedicalConcept_9", + "BiomedicalConcept_10" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "Education", + "label": "Education", + "description": "Education activity", + "previousId": "Activity_4", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_11", + "BiomedicalConcept_12" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "Hachinski", + "label": "Hachinski", + "description": "Hachinski test", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_10", + "BiomedicalConceptSurrogate_11", + "BiomedicalConceptSurrogate_12", + "BiomedicalConceptSurrogate_13", + "BiomedicalConceptSurrogate_14", + "BiomedicalConceptSurrogate_15", + "BiomedicalConceptSurrogate_16", + "BiomedicalConceptSurrogate_17", + "BiomedicalConceptSurrogate_18", + "BiomedicalConceptSurrogate_9" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "MMSE test", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_20", + "BiomedicalConceptSurrogate_21", + "BiomedicalConceptSurrogate_22", + "BiomedicalConceptSurrogate_23", + "BiomedicalConceptSurrogate_24", + "BiomedicalConceptSurrogate_25", + "BiomedicalConceptSurrogate_26" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "Physical examination", + "label": "Physical examination", + "description": "Physical examination results", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_159", + "BiomedicalConcept_160", + "BiomedicalConcept_161" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "Medical History", + "label": "Medical History", + "description": "Medical History response", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "Habits", + "label": "Habits", + "description": "List of habits", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_15", + "BiomedicalConcept_16", + "BiomedicalConcept_17" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "Chest X-ray", + "label": "Chest X-ray", + "description": "Chest X-ray result", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_18" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "Apo E genotyping", + "label": "Apo E genotyping", + "description": "Apo E genotyping test", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_19" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "Patient randomised", + "label": "Patient randomized", + "description": "Patient randomized activity", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "Vital Signs", + "label": "Vital Signs", + "description": "Vital Signs result", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21", + "BiomedicalConcept_22", + "BiomedicalConcept_23", + "BiomedicalConcept_24", + "BiomedicalConcept_25", + "BiomedicalConcept_26" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "Ambulatory ECG placed", + "label": "Ambulatory ECG placed", + "description": "Ambulatory ECG placed activity", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_162" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "Ambulatory ECG removed", + "label": "Ambulatory ECG removed", + "description": "Ambulatory ECG removed activity", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_163" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG", + "description": "ECG results", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_27", + "BiomedicalConcept_28", + "BiomedicalConcept_29", + "BiomedicalConcept_30", + "BiomedicalConcept_31", + "BiomedicalConcept_32", + "BiomedicalConcept_33", + "BiomedicalConcept_34", + "BiomedicalConcept_35", + "BiomedicalConcept_36", + "BiomedicalConcept_37", + "BiomedicalConcept_38", + "BiomedicalConcept_39", + "BiomedicalConcept_40", + "BiomedicalConcept_41", + "BiomedicalConcept_42", + "BiomedicalConcept_43", + "BiomedicalConcept_44", + "BiomedicalConcept_45", + "BiomedicalConcept_46", + "BiomedicalConcept_47", + "BiomedicalConcept_48", + "BiomedicalConcept_49", + "BiomedicalConcept_50" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "Placebo TTS Test", + "label": "Placebo TTS Test", + "description": "Placebo TTS Test results", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_164" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "CT Scan", + "label": "CT Scan", + "description": "CT Scan results", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_51" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "MRI", + "label": "MRI", + "description": "MRI results", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_52" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "MRI, CT Scan", + "label": "MRI, CT Scan", + "description": "MRI, CT Scan results", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_165", + "BiomedicalConcept_166" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "Concomitant medications", + "label": "Concomitant medications", + "description": "Concomitant medications information", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_54", + "BiomedicalConcept_55" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "Hematology", + "label": "Hematology", + "description": "Hematology results", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_56", + "BiomedicalConcept_57", + "BiomedicalConcept_58", + "BiomedicalConcept_59", + "BiomedicalConcept_60", + "BiomedicalConcept_61", + "BiomedicalConcept_62", + "BiomedicalConcept_63", + "BiomedicalConcept_64", + "BiomedicalConcept_65", + "BiomedicalConcept_66", + "BiomedicalConcept_67", + "BiomedicalConcept_68", + "BiomedicalConcept_69", + "BiomedicalConcept_70", + "BiomedicalConcept_71", + "BiomedicalConcept_72", + "BiomedicalConcept_73" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "Chemistry", + "label": "Chemistry", + "description": "Chemistry test results", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_74", + "BiomedicalConcept_75", + "BiomedicalConcept_76", + "BiomedicalConcept_77", + "BiomedicalConcept_78", + "BiomedicalConcept_79", + "BiomedicalConcept_80", + "BiomedicalConcept_81", + "BiomedicalConcept_82", + "BiomedicalConcept_83", + "BiomedicalConcept_84", + "BiomedicalConcept_85", + "BiomedicalConcept_86", + "BiomedicalConcept_87", + "BiomedicalConcept_88", + "BiomedicalConcept_89", + "BiomedicalConcept_90", + "BiomedicalConcept_91", + "BiomedicalConcept_92", + "BiomedicalConcept_93", + "BiomedicalConcept_94", + "BiomedicalConcept_95", + "BiomedicalConcept_96", + "BiomedicalConcept_97", + "BiomedicalConcept_98", + "BiomedicalConcept_99", + "BiomedicalConcept_100" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "Urinalysis", + "label": "Urinalysis", + "description": "Urinalysis results", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_101", + "BiomedicalConcept_102", + "BiomedicalConcept_103", + "BiomedicalConcept_104", + "BiomedicalConcept_105", + "BiomedicalConcept_106", + "BiomedicalConcept_107", + "BiomedicalConcept_108", + "BiomedicalConcept_109" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "Plasma Specimen (Xanomeline)", + "label": "Plasma Specimen (Xanomeline)", + "description": "Plasma Specimen (Xanomeline) results", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "Hemoglobin A1C", + "label": "Hemoglobin A1C", + "description": "Hemoglobin A1C results", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_110", + "BiomedicalConcept_111" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "Study Drug", + "label": "Study Drug", + "description": "Study Drug activity", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_112" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "description": "TTS Acceptability Survey results", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_113", + "BiomedicalConcept_114", + "BiomedicalConcept_115", + "BiomedicalConcept_116", + "BiomedicalConcept_117" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "ADAS-Cog", + "label": "ADAS-Cog", + "description": "ADAS-Cog results", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_172", + "BiomedicalConcept_173", + "BiomedicalConcept_174", + "BiomedicalConcept_175", + "BiomedicalConcept_176", + "BiomedicalConcept_177", + "BiomedicalConcept_178", + "BiomedicalConcept_179", + "BiomedicalConcept_180", + "BiomedicalConcept_181", + "BiomedicalConcept_182", + "BiomedicalConcept_183", + "BiomedicalConcept_184", + "BiomedicalConcept_185", + "BiomedicalConcept_186", + "BiomedicalConcept_187" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "CIBIC+", + "label": "CIBIC+", + "description": "CIBIC+ results", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_27" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "DAD", + "label": "DAD", + "description": "DAD results", + "previousId": "Activity_31", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_28" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "NPI-X", + "label": "NPI-X", + "description": "NPI-X results", + "previousId": "Activity_32", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [ + "BiomedicalConceptSurrogate_29", + "BiomedicalConceptSurrogate_30", + "BiomedicalConceptSurrogate_31", + "BiomedicalConceptSurrogate_32", + "BiomedicalConceptSurrogate_33", + "BiomedicalConceptSurrogate_34" + ], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "Adverse Events", + "label": "Adverse Events", + "description": "Activities to conduct if occurence of Adverse Event", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_134", + "BiomedicalConcept_135" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "Check Adverse Events", + "label": "Check Adverse Events", + "description": "TL: Adverse Event Timeline", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_170", + "BiomedicalConcept_171" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "Patient Summary", + "label": "Patient Summary", + "description": "Patient Summary (Study Conclusion)", + "previousId": "Activity_35", + "nextId": "Activity_37", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_136", + "BiomedicalConcept_137", + "BiomedicalConcept_138", + "BiomedicalConcept_139", + "BiomedicalConcept_140", + "BiomedicalConcept_141", + "BiomedicalConcept_142", + "BiomedicalConcept_143", + "BiomedicalConcept_144", + "BiomedicalConcept_145", + "BiomedicalConcept_146", + "BiomedicalConcept_147", + "BiomedicalConcept_148", + "BiomedicalConcept_149", + "BiomedicalConcept_150", + "BiomedicalConcept_151", + "BiomedicalConcept_152" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_37", + "extensionAttributes": [], + "name": "Supine", + "label": "Supine", + "description": "Supine", + "previousId": "Activity_36", + "nextId": "Activity_38", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_168" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_38", + "extensionAttributes": [], + "name": "Vital Signs Supine", + "label": "Vital Signs Supine", + "description": "Vital Signs Supine", + "previousId": "Activity_37", + "nextId": "Activity_39", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_153", + "BiomedicalConcept_154", + "BiomedicalConcept_155" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_39", + "extensionAttributes": [], + "name": "Stand", + "label": "Stand", + "description": "Stand", + "previousId": "Activity_38", + "nextId": "Activity_40", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_169" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_40", + "extensionAttributes": [], + "name": "Vital Signs Standing", + "label": "Vital Signs Standing", + "description": "Vital Signs Standing", + "previousId": "Activity_39", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_156", + "BiomedicalConcept_157", + "BiomedicalConcept_158" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo ARM", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_2", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 low dose", + "type": { + "id": "Code_3", + "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_4", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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 high dose", + "type": { + "id": "Code_5", + "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_6", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_3", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_2" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "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_3", + "elementIds": [ + "StudyElement_4" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_5" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_6" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_16", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": [ + "StudyElement_1" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_17", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_18", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_19", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": [ + "StudyElement_3" + ], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_20", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": [ + "StudyElement_7" + ], + "instanceType": "StudyCell" + } + ], + "rationale": "", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "SCREENING", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment 1", + "description": "Treatment 1 Epoch", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment 2", + "description": "Treatment 2 Epoch", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment 3", + "description": "Treatment 3 Epoch", + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "TREATMENT", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Follow-up", + "label": "Follow-up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "https://library.cdisc.org", + "codeSystemVersion": "sdtmct-2025-09-26", + "decode": "FOLLOW-UP", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_5", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_23", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_24", + "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_27", + "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_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_28", + "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_29", + "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_30", + "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_31", + "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" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow up Element", + "transitionStartRule": { + "id": "TransitionRule_25", + "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_26", + "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" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "Estimand 1", + "label": "Estimand 1", + "description": "Estimand 1", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "", + "variableOfInterestId": "Endpoint_1", + "interventionIds": [ + "StudyIntervention_1" + ], + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "Disruption", + "label": "Disruption", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "strategy": "Treatment Policy. Continue to measure effect of treatment assignment regardless of interruption.", + "notes": [], + "instanceType": "IntercurrentEvent" + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "Indication 1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36968", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "Indication 2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "isRareDisease": false, + "codes": [ + { + "id": "Code_36969", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "2018-01-31", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": [ + "StudyIntervention_1" + ], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "Objective 1", + "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": [], + "level": { + "id": "Code_2508", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "ENDPT1", + "label": "Endpoint 1", + "description": "ADAS-Cog Week 24 Endpoint", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2514", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "ENDPT2", + "label": "Endpoint 2", + "description": "Clinician Week 24 impression of change", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2515", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "Objective 2", + "description": "Safety", + "text": "To document the safety profile of the xanomeline TTS.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2509", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85826", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "ENDPT3", + "label": "Endpoint 3", + "description": "Adverse events", + "text": "Adverse events", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2516", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "ENDPT4", + "label": "Endpoint 4", + "description": "Vital Signs", + "text": "Vital signs (weight, standing and supine blood pressure, heart rate)", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2517", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "ENDPT5", + "label": "Endpoint 5", + "description": "Baseline", + "text": "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": [], + "purpose": "", + "level": { + "id": "Code_2518", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C94496", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "Objective 3", + "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": [], + "level": { + "id": "Code_2510", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "ENDPT6", + "label": "Endpoint 6", + "description": "Cognitive Scale", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2519", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "ENDPT7", + "label": "Endpoint 7", + "description": "Clinician impression at Week8 and Week16", + "text": "Video-referenced Clinician\\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2520", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "ENDPT8", + "label": "Endpoint 8", + "description": "NPI-X", + "text": "Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2521", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "Objective 4", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2511", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "ENDPT9", + "label": "Endpoint 9", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2522", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "Objective 5", + "description": "Improvements", + "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": [], + "level": { + "id": "Code_2512", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "ENDPT10", + "label": "Endpoint 10", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2523", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "Objective 6", + "description": "Response", + "text": "To assess the treatment response as a function of Apo E genotype.", + "dictionaryId": null, + "notes": [], + "level": { + "id": "Code_2513", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C85827", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "ENDPT11", + "label": "Endpoint 11", + "description": "UNK", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "purpose": "", + "level": { + "id": "Code_2524", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "C139173", + "instanceType": "Code" + }, + "instanceType": "Endpoint" + } + ], + "instanceType": "Objective" + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "Population_1", + "label": null, + "description": null, + "includesHealthySubjects": false, + "plannedEnrollmentNumber": null, + "plannedCompletionNumber": null, + "plannedSex": [], + "criterionIds": [], + "plannedAge": null, + "notes": [], + "cohorts": [], + "instanceType": "StudyDesignPopulation" + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_1", + "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_1", + "exits": [], + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2W", + "valueLabel": "2 Weeks Before Dose", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "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": "2026-03-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "-P2D", + "valueLabel": "2 Days Before Dose", + "relativeToFrom": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing Anchor", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_25", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_30", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_31", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "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_34", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_35", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 Timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 Timing", + "type": { + "id": "Code_38", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_39", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 Timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 Timing", + "type": { + "id": "Code_42", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_43", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_25", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 Timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_26", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 Home Timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 Home Timing", + "type": { + "id": "Code_48", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_49", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 Home Timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 Home Timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_23", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen 1", + "description": "Screen 1 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_2", + "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_11", + "Activity_14", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_27", + "Activity_31", + "Activity_32", + "Activity_30", + "Activity_33" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen 2", + "description": "Screen 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_3", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_15", + "Activity_33" + ], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "Dose Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_14", + "Activity_16", + "Activity_22", + "Activity_28", + "Activity_26", + "Activity_30", + "Activity_31", + "Activity_32", + "Activity_33" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "WEEK2", + "label": "Week 2", + "description": "Week 2 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_14", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_28", + "Activity_17", + "Activity_24", + "Activity_33" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "WEEK4", + "label": "Week 4", + "description": "Week 4 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "WEEK6", + "label": "Week 6", + "description": "Week 6 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_26", + "Activity_28", + "Activity_33" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "WEEK8", + "label": "Week 8", + "description": "Week 8 Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "WEEK8N", + "label": "Week 8 NPI", + "description": "Week 8 NPI Activity Instance", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_31", + "Activity_31", + "Activity_32", + "Activity_32", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WEEK12", + "label": "Week 12", + "description": "Week 12", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WEEK12N", + "label": "Week 12 NPI", + "description": "Week 12 NPI", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_25", + "Activity_25", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WEEK16", + "label": "Week 16", + "description": "Week 16", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WEEK16N", + "label": "Week 16 NPI", + "description": "Week 16 NPI", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_28", + "Activity_28", + "Activity_30", + "Activity_30", + "Activity_32", + "Activity_32", + "Activity_31", + "Activity_31", + "Activity_33", + "Activity_33" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WEEK20", + "label": "Week 20", + "description": "Week 20", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WEEK20N", + "label": "Week 20 NPI", + "description": "Week 20 NPI", + "defaultConditionId": "ScheduledActivityInstance_25", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_33", + "Activity_14", + "Activity_14", + "Activity_17", + "Activity_17", + "Activity_22", + "Activity_22", + "Activity_23", + "Activity_23", + "Activity_24", + "Activity_24", + "Activity_26", + "Activity_26", + "Activity_28", + "Activity_28" + ], + "encounterId": "Encounter_13" + }, + { + "id": "ScheduledActivityInstance_25", + "extensionAttributes": [], + "name": "WEEK24", + "label": "Week 24", + "description": "Week 24", + "defaultConditionId": "ScheduledActivityInstance_26", + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_25", + "Activity_28", + "Activity_30", + "Activity_32", + "Activity_31" + ], + "encounterId": "Encounter_15" + }, + { + "id": "ScheduledActivityInstance_26", + "extensionAttributes": [], + "name": "WEEK26", + "label": "Week 26", + "description": "Week 26", + "defaultConditionId": null, + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_33", + "Activity_14", + "Activity_17", + "Activity_22", + "Activity_23", + "Activity_24", + "Activity_28", + "Activity_29" + ], + "encounterId": "Encounter_16" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "testDecisionInstance", + "label": "testDecisionInstance", + "description": "testDecisionInstance", + "defaultConditionId": null, + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "condition": "is not null", + "conditionTargetId": "ScheduledActivityInstance_3", + "instanceType": "Condition" + } + ] + }, + { + "id": "ScheduledDecisionInstance_2", + "extensionAttributes": [], + "name": "test_2", + "label": "test_2", + "description": "test_2", + "defaultConditionId": "blahblahblah", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + }, + { + "id": "ScheduledDecisionInstance_3", + "extensionAttributes": [], + "name": "test3", + "label": "test3", + "description": "test3", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [] + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_6", + "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_11", + "exits": [], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event Timing", + "type": { + "id": "Code_105", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_106", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "AE", + "label": "Adverse Event", + "description": "Occurrence of Adverse Event", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_7", + "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_12", + "exits": [], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination Timing", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_108", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_12", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "Early Termination", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_8", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_13", + "exits": [], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "VS Supine", + "type": { + "id": "Code_109", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_111", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_112", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_13", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_114", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_14", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_115", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "VS Standing", + "type": { + "id": "Code_117", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_118", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_16", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_119", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": null, + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "VS 5 minute supine", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "VS Vital signs supine", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "VS 1 minute standing", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "VS Vital signs after 1 min standing", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "VS 2 minute standing", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "VS Vital signs after 3 min standing", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [], + "analysisPopulations": [], + "notes": [], + "subTypes": [], + "model": { + "id": "Code_StudyDesignModel", + "extensionAttributes": [], + "code": "", + "codeSystem": "", + "codeSystemVersion": "", + "decode": "", + "instanceType": "Code" + }, + "intentTypes": [], + "blindingSchema": null, + "instanceType": "InterventionalStudyDesign" + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT - Pilot", + "type": { + "id": "Code_27557", + "extensionAttributes": [], + "code": "C207646", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_27601", + "extensionAttributes": [], + "code": "C207615", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-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_27813", + "extensionAttributes": [], + "code": "C207616", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "documentVersionIds": [], + "dateValues": [], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "notes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "First amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_2525", + "extensionAttributes": [], + "code": "C207605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_2526", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "OTHER", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_2", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "Change 1", + "description": "Typographical errors lead to ambiguity when interpreting Inclusion Criteria", + "summary": "Fixed inclusion criteria text", + "rationale": "Subject safety", + "changedSections": [ + { + "id": "DocumentContentReference_2", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "notes": [], + "type": { + "id": "Code_2527", + "extensionAttributes": [], + "code": "C215665", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Enhance subject safety", + "isSubstantial": false, + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + }, + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "Enrollment 1", + "label": null, + "description": null, + "quantity": { + "id": "SubjectEnrollment_1_Qty", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_20010", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_20011", + "extensionAttributes": [], + "standardCode": { + "id": "Code_20011", + "extensionAttributes": [], + "code": "150", + "codeSystem": "UN M49", + "codeSystemVersion": "2026", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "Protocol Approval", + "label": null, + "description": null, + "type": { + "id": "Code_13051", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_12462", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "instanceType": "StudyAmendment" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "identifier": "00-642-1325", + "identifierScheme": "DUNS", + "type": { + "id": "Code_28637", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": [ + "Lilly Corporate Ctr" + ], + "city": "Indianapolis", + "district": null, + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_28638", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "identifier": "CT-GOV", + "identifierScheme": "USGOV", + "type": { + "id": "Code_28639", + "extensionAttributes": [], + "code": "C142578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Independent Data Monitoring Committee", + "instanceType": "Code" + }, + "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_28640", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "MLM Medical Labs", + "label": "Central Labu", + "identifier": "", + "identifierScheme": "", + "type": { + "id": "Code_39641", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": null, + "lines": [], + "city": null, + "district": null, + "state": null, + "postalCode": null, + "country": { + "id": "Code_39642", + "extensionAttributes": [], + "code": "840", + "codeSystem": "ISO 3166 1 Numeric Code", + "codeSystemVersion": "2026", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "Role 1", + "label": "Sponsor", + "description": "Study Sponsor", + "code": { + "id": "Code_35642", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_1" + ], + "appliesToIds": [], + "assignedPersons": [], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + }, + { + "id": "StudyRole_3", + "extensionAttributes": [], + "name": "Laboratory Contact", + "label": "Lab Primary Contact", + "description": "The primary person to contact at the Central Lab", + "code": { + "id": "Code_40467", + "extensionAttributes": [], + "code": "C37984", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Laboratory", + "instanceType": "Code" + }, + "organizationIds": [ + "Organization_3" + ], + "appliesToIds": [], + "assignedPersons": [ + { + "id": "Person_2", + "extensionAttributes": [], + "name": "John Smith", + "label": null, + "description": null, + "personName": { + "id": "PersonName_2", + "extensionAttributes": [], + "text": null, + "familyName": "Smith", + "givenNames": [ + "John" + ], + "prefixes": [ + "Dr." + ], + "suffixes": [ + "PhD" + ], + "instanceType": "PersonName" + }, + "jobTitle": "", + "instanceType": "AssignedPerson" + } + ], + "masking": null, + "notes": [], + "instanceType": "StudyRole" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_36026", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_36027", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 1.0, + "unit": { + "id": "AliasCode_30645", + "extensionAttributes": [], + "standardCode": { + "id": "Code_36028", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-27", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_36144", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "businessTherapeuticAreas": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_126", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Informed Consent", + "label": null, + "synonyms": [ + "Informed Consent Obtained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16735", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3021", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_42410", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_37997", + "standardCode": { + "id": "Code_45284", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_37998", + "standardCode": { + "id": "Code_45285", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_37999", + "standardCode": { + "id": "Code_45286", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3361", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_127", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/INCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Inclusion Criteria", + "label": "Inclusion Criteria", + "synonyms": [ + "Inclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25532", + "properties": [ + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38000", + "standardCode": { + "id": "Code_45287", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38001", + "standardCode": { + "id": "Code_45288", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38002", + "standardCode": { + "id": "Code_45289", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24523", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "synonyms": [ + "Inclusion Exclusion Criteria Yes No Indicator", + "IEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83063", + "properties": [ + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "Inclusion Exclusion Criteria Yes No Indicator", + "label": "Inclusion Exclusion Criteria Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38003", + "standardCode": { + "id": "Code_45290", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38004", + "standardCode": { + "id": "Code_45291", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31819", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38143", + "extensionAttributes": [], + "code": "C83063", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Inclusion Exclusion Criteria Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_1", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXCL01", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exclusion Criteria", + "label": "Exclusion Criteria", + "synonyms": [ + "Exclusion" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25370", + "properties": [ + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "TIVERS", + "label": "TIVERS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_2841", + "instanceType": "ResponseCode", + "name": "INFORMED CONSENT OBTAINED", + "label": "INFORMED CONSENT OBTAINED", + "isEnabled": true, + "code": { + "id": "Code_40605", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "INFORMED CONSENT OBTAINED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38005", + "standardCode": { + "id": "Code_45292", + "extensionAttributes": [], + "code": "C83444", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Trial Inclusion Exclusion Criteria Version", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "IEORRES", + "label": "IEORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38006", + "standardCode": { + "id": "Code_45293", + "extensionAttributes": [], + "code": "C181043", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Findings Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "IEDTC", + "label": "IEDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38007", + "standardCode": { + "id": "Code_45294", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3363", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_2", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": "Subject is Randomized", + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3022", + "instanceType": "ResponseCode", + "name": "RANDOMIZED", + "label": "RANDOMIZED", + "isEnabled": true, + "code": { + "id": "Code_45298", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38010", + "standardCode": { + "id": "Code_45297", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38012", + "standardCode": { + "id": "Code_45299", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38013", + "standardCode": { + "id": "Code_45300", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_125", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RACE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Race", + "label": "Race", + "synonyms": [ + "Racial Group" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "RACE", + "label": "RACE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38014", + "standardCode": { + "id": "Code_45301", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Race", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38015", + "standardCode": { + "id": "Code_45302", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31820", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38144", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_3", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ETHNIC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ethnic Group", + "label": "Ethnic Group", + "synonyms": [ + "Ethnicity", + "Ethnic Origin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16564", + "properties": [ + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "ETHNIC", + "label": "ETHNIC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38016", + "standardCode": { + "id": "Code_45303", + "extensionAttributes": [], + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ethnic Group", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38017", + "standardCode": { + "id": "Code_45304", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_31821", + "extensionAttributes": [], + "standardCode": { + "id": "Code_38145", + "extensionAttributes": [], + "code": "C16564", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Ethnic Group", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_4", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AGE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject Age", + "label": "Subject Age", + "synonyms": [ + "Age" + ], + "reference": "/mdr/bc/biomedicalconcepts/C69260", + "properties": [ + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AGE", + "label": "AGE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38018", + "standardCode": { + "id": "Code_45305", + "extensionAttributes": [], + "code": "C170981", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Numeric Age for Data Tabulation", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AGEU", + "label": "AGEU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38019", + "standardCode": { + "id": "Code_45306", + "extensionAttributes": [], + "code": "C50400", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Age Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38020", + "standardCode": { + "id": "Code_45307", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24524", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28642", + "extensionAttributes": [], + "code": "C69260", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Subject Age", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_5", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BRTHDTC", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Birth Date and Time", + "label": "Birth Date and Time", + "synonyms": [ + "BRTHDTC", + "Date/Time of Birth" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83217", + "properties": [ + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "BRTHDTC", + "label": "BRTHDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38021", + "standardCode": { + "id": "Code_45308", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38022", + "standardCode": { + "id": "Code_45309", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3365", + "extensionAttributes": [], + "code": "C83217", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Birth Date and Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_6", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SEX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sex", + "label": null, + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "SEX", + "label": "SEX", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38023", + "standardCode": { + "id": "Code_45310", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "DMDTC", + "label": "DMDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38024", + "standardCode": { + "id": "Code_45311", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24525", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28643", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-04-01", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_7", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDULEVEL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Education Level", + "label": "Education Level", + "synonyms": [ + "EDULEVEL", + "Education", + "Education Level", + "Education Level Completed", + "education_level", + "Educational Attainment", + "Educational Level", + "Level of Education Attained" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17953", + "properties": [ + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "SCORRES", + "label": "SCORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38025", + "standardCode": { + "id": "Code_45312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "SCDTC", + "label": "SCDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38026", + "standardCode": { + "id": "Code_45313", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24526", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28644", + "extensionAttributes": [], + "code": "C17953", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Education Level", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_8", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EDUYRNUM", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Number of Years of Education", + "label": "Number of Years of Education", + "synonyms": [ + "EDUYRNUM", + "Number of Years of Education" + ], + "reference": "/mdr/bc/biomedicalconcepts/C122393", + "properties": [ + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "SCORRES", + "label": "SCORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38027", + "standardCode": { + "id": "Code_45314", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "SCDTC", + "label": "SCDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38028", + "standardCode": { + "id": "Code_45315", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24527", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28645", + "extensionAttributes": [], + "code": "C122393", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Number of Years of Education", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_123", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MEDHISTFREE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_124", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHALZHEIMERS", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_128", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MHVISUALHALLUCINATIONS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Medical History", + "label": "Solicited Medical History", + "synonyms": [ + "Medical History", + "Medical History Collection" + ], + "reference": "/mdr/bc/biomedicalconcepts/C200145", + "properties": [ + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "MHTERM", + "label": "MHTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38029", + "standardCode": { + "id": "Code_45316", + "extensionAttributes": [], + "code": "C83118", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Reported Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "MHDECOD", + "label": "MHDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38030", + "standardCode": { + "id": "Code_45317", + "extensionAttributes": [], + "code": "C83346", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "MHSTDTC", + "label": "MHSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38031", + "standardCode": { + "id": "Code_45318", + "extensionAttributes": [], + "code": "C83338", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "MHENDTC", + "label": "MHENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38032", + "standardCode": { + "id": "Code_45319", + "extensionAttributes": [], + "code": "C83330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Medical History Event End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "MHENRF", + "label": "MHENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38033", + "standardCode": { + "id": "Code_45320", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "MHENRTPT", + "label": "MHENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38034", + "standardCode": { + "id": "Code_45321", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "MHENTPT", + "label": "MHENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38035", + "standardCode": { + "id": "Code_45322", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3366", + "extensionAttributes": [], + "code": "C200145", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Medical History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_134", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALCOHOLHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alcohol Use History", + "label": "Alcohol Use History", + "synonyms": [ + "Alcohol History", + "Alcohol Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81229", + "properties": [ + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38036", + "standardCode": { + "id": "Code_45323", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38037", + "standardCode": { + "id": "Code_45324", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38038", + "standardCode": { + "id": "Code_45325", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38039", + "standardCode": { + "id": "Code_45326", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38040", + "standardCode": { + "id": "Code_45327", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38041", + "standardCode": { + "id": "Code_45328", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38042", + "standardCode": { + "id": "Code_45329", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38043", + "standardCode": { + "id": "Code_45330", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38044", + "standardCode": { + "id": "Code_45331", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38045", + "standardCode": { + "id": "Code_45332", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38046", + "standardCode": { + "id": "Code_45333", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38047", + "standardCode": { + "id": "Code_45334", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38048", + "standardCode": { + "id": "Code_45335", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38049", + "standardCode": { + "id": "Code_45336", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38050", + "standardCode": { + "id": "Code_45337", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24528", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28646", + "extensionAttributes": [], + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alcohol Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_135", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CAFFEINEHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Caffeine Use History", + "label": "Caffeine Use History", + "synonyms": [ + "Caffeine History", + "Caffeine Use" + ], + "reference": "/mdr/bc/biomedicalconcepts/C201990", + "properties": [ + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38051", + "standardCode": { + "id": "Code_45338", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38052", + "standardCode": { + "id": "Code_45339", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38053", + "standardCode": { + "id": "Code_45340", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38054", + "standardCode": { + "id": "Code_45341", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38055", + "standardCode": { + "id": "Code_45342", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38056", + "standardCode": { + "id": "Code_45343", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38057", + "standardCode": { + "id": "Code_45344", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38058", + "standardCode": { + "id": "Code_45345", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38059", + "standardCode": { + "id": "Code_45346", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38060", + "standardCode": { + "id": "Code_45347", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38061", + "standardCode": { + "id": "Code_45348", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38062", + "standardCode": { + "id": "Code_45349", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38063", + "standardCode": { + "id": "Code_45350", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38064", + "standardCode": { + "id": "Code_45351", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38065", + "standardCode": { + "id": "Code_45352", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3367", + "extensionAttributes": [], + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Caffeine Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_130", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_131", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CIGARETTEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_132", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PIPEHX", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_133", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TOBACCOHX", + "instanceType": "ExtensionAttribute" + } + ], + "name": "History of Tobacco Use", + "label": "History of Tobacco Use", + "synonyms": [ + "Tobacco Use", + "Tobacco Use History" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181760", + "properties": [ + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "SUTRT", + "label": "SUTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38066", + "standardCode": { + "id": "Code_45353", + "extensionAttributes": [], + "code": "C83092", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Reported Name", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "SUPRESP", + "label": "SUPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38067", + "standardCode": { + "id": "Code_45354", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "SUOCCUR", + "label": "SUOCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38068", + "standardCode": { + "id": "Code_45355", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "SUDOSE", + "label": "SUDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38069", + "standardCode": { + "id": "Code_45356", + "extensionAttributes": [], + "code": "C83416", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "SUDOSTXT", + "label": "SUDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38070", + "standardCode": { + "id": "Code_45357", + "extensionAttributes": [], + "code": "C83041", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "SUDOSU", + "label": "SUDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38071", + "standardCode": { + "id": "Code_45358", + "extensionAttributes": [], + "code": "C83038", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "SUDOSFRQ", + "label": "SUDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38072", + "standardCode": { + "id": "Code_45359", + "extensionAttributes": [], + "code": "C83044", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "SUSTDTC", + "label": "SUSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38073", + "standardCode": { + "id": "Code_45360", + "extensionAttributes": [], + "code": "C83431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "SUENDTC", + "label": "SUENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38074", + "standardCode": { + "id": "Code_45361", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "SUDUR", + "label": "SUDUR", + "isRequired": false, + "isEnabled": true, + "datatype": "durationDatetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38075", + "standardCode": { + "id": "Code_45362", + "extensionAttributes": [], + "code": "C83419", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Substance Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "SUSTRF", + "label": "SUSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38076", + "standardCode": { + "id": "Code_45363", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "SUSTRTPT", + "label": "SUSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38077", + "standardCode": { + "id": "Code_45364", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "SUSTTPT", + "label": "SUSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38078", + "standardCode": { + "id": "Code_45365", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "SUENRF", + "label": "SUENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38079", + "standardCode": { + "id": "Code_45366", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "SUENRTPT", + "label": "SUENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38080", + "standardCode": { + "id": "Code_45367", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "SUENTPT", + "label": "SUENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38081", + "standardCode": { + "id": "Code_45368", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3368", + "extensionAttributes": [], + "code": "C181760", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "History of Tobacco Use", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_136", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAY", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_137", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/XRAYCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "X-Ray Imaging", + "label": "X-Ray Imaging", + "synonyms": [ + "Conventional X-Ray", + "Medical Imaging", + "X-Ray", + "Static X-Ray" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38101", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38082", + "standardCode": { + "id": "Code_45369", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3023", + "instanceType": "ResponseCode", + "name": "X-RAY", + "label": "X-RAY", + "isEnabled": true, + "code": { + "id": "Code_45371", + "extensionAttributes": [], + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "X-RAY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38083", + "standardCode": { + "id": "Code_45370", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38085", + "standardCode": { + "id": "Code_45372", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38086", + "standardCode": { + "id": "Code_45373", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38087", + "standardCode": { + "id": "Code_45374", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "PRLAT", + "label": "PRLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38088", + "standardCode": { + "id": "Code_45375", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38089", + "standardCode": { + "id": "Code_45376", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38090", + "standardCode": { + "id": "Code_45377", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_38008", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45295", + "extensionAttributes": [], + "code": "C38101", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "X-Ray Imaging", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_138", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RAND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Subject is Randomized", + "label": null, + "synonyms": [ + "Randomized" + ], + "reference": "/mdr/bc/biomedicalconcepts/C114209", + "properties": [ + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3024", + "instanceType": "ResponseCode", + "name": "RANDOMIZED", + "label": "RANDOMIZED", + "isEnabled": true, + "code": { + "id": "Code_45379", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "RANDOMIZED", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38091", + "standardCode": { + "id": "Code_45378", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38093", + "standardCode": { + "id": "Code_45380", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38094", + "standardCode": { + "id": "Code_45381", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3370", + "extensionAttributes": [], + "code": "C114209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Subject is Randomized", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_9", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TEMP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_145", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/TEMP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Temperature", + "label": "Body Temperature", + "synonyms": [ + "Temperature" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174446", + "properties": [ + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38095", + "standardCode": { + "id": "Code_45382", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38096", + "standardCode": { + "id": "Code_45383", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38097", + "standardCode": { + "id": "Code_45384", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38098", + "standardCode": { + "id": "Code_45385", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2640", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2850", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_10", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_146", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/WEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Weight", + "label": "Body Weight", + "synonyms": [ + "WEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81328", + "properties": [ + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38099", + "standardCode": { + "id": "Code_45386", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38100", + "standardCode": { + "id": "Code_45387", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38101", + "standardCode": { + "id": "Code_45388", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3371", + "extensionAttributes": [], + "code": "C81328", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_11", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HEIGHT", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_147", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/HEIGHT_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Height", + "label": "Body Height", + "synonyms": [ + "HEIGHT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C164634", + "properties": [ + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38102", + "standardCode": { + "id": "Code_45389", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38103", + "standardCode": { + "id": "Code_45390", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38104", + "standardCode": { + "id": "Code_45391", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24529", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28647", + "extensionAttributes": [], + "code": "C164634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_12", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PULSE", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_148", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/PULSE_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pulse Rate", + "label": "Pulse Rate", + "synonyms": [ + "Pulse" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49676", + "properties": [ + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38105", + "standardCode": { + "id": "Code_45392", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3025", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_45394", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38106", + "standardCode": { + "id": "Code_45393", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38108", + "standardCode": { + "id": "Code_45395", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38109", + "standardCode": { + "id": "Code_45396", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38110", + "standardCode": { + "id": "Code_45397", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38111", + "standardCode": { + "id": "Code_45398", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2664", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2874", + "extensionAttributes": [], + "code": "C49676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_13", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RESP", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_149", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/RESP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Respiratory Rate", + "label": "Respiratory Rate", + "synonyms": [ + "RESP", + "RESPRATE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49678", + "properties": [ + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38112", + "standardCode": { + "id": "Code_45399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3026", + "instanceType": "ResponseCode", + "name": "breaths/min", + "label": "breaths/min", + "isEnabled": true, + "code": { + "id": "Code_45401", + "extensionAttributes": [], + "code": "C49674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "breaths/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38113", + "standardCode": { + "id": "Code_45400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38115", + "standardCode": { + "id": "Code_45402", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2680", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2890", + "extensionAttributes": [], + "code": "C49678", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "", + "decode": "VSTESTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_14", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BMI", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_150", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/BMI_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Body Mass Index", + "label": "Body Mass Index", + "synonyms": [ + "BMI", + "Quetelet Index" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16358", + "properties": [ + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38116", + "standardCode": { + "id": "Code_45403", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38117", + "standardCode": { + "id": "Code_45404", + "extensionAttributes": [], + "code": "C42575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Density", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38118", + "standardCode": { + "id": "Code_45405", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24530", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28648", + "extensionAttributes": [], + "code": "C16358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Body Mass Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_151", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/DIABP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + }, + { + "id": "ExtensionAttribute_152", + "url": "http://www.cdisc.org/usdm/extensions/specializations/crf", + "valueString": "/mdr/specializations/crf/specializations/SYSBP_DENORMALIZED", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Blood Pressure", + "label": "Blood Pressure", + "synonyms": [ + "BP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C54706", + "properties": [], + "code": { + "id": "AliasCode_3162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3372", + "extensionAttributes": [], + "code": "C54706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_15", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGINTP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Electrocardiogram Analysis", + "label": "Electrocardiogram Analysis", + "synonyms": [ + "ECG Analysis", + "EKG Analysis", + "Electrocardiogram Interpretation", + "ECG Interpretation", + "EKG Interpretation" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181655", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38119", + "standardCode": { + "id": "Code_45406", + "extensionAttributes": [], + "code": "C125009", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinical Interpretation", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38120", + "standardCode": { + "id": "Code_45407", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38121", + "standardCode": { + "id": "Code_45408", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "EGCLSIG", + "label": "EGCLSIG", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38122", + "standardCode": { + "id": "Code_45409", + "extensionAttributes": [], + "code": "C93532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Clinically Significant Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38123", + "standardCode": { + "id": "Code_45410", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24531", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28649", + "extensionAttributes": [], + "code": "C181655", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Electrocardiogram Analysis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_16", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AVCOND", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Atrioventricular Conduction ECG Assessment", + "label": "Atrioventricular Conduction ECG Assessment", + "synonyms": [ + "AVCOND", + "Atrioventricular Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111131", + "properties": [ + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38124", + "standardCode": { + "id": "Code_45411", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38125", + "standardCode": { + "id": "Code_45412", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38126", + "standardCode": { + "id": "Code_45413", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38127", + "standardCode": { + "id": "Code_45414", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38128", + "standardCode": { + "id": "Code_45415", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24532", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28650", + "extensionAttributes": [], + "code": "C111131", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Atrioventricular Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_17", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AXISVOLT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Axis and Voltage ECG Assessment", + "label": "Axis and Voltage ECG Assessment", + "synonyms": [ + "AXISVOLT", + "Axis and Voltage" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111132", + "properties": [ + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38129", + "standardCode": { + "id": "Code_45416", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38130", + "standardCode": { + "id": "Code_45417", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38131", + "standardCode": { + "id": "Code_45418", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38132", + "standardCode": { + "id": "Code_45419", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38133", + "standardCode": { + "id": "Code_45420", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24533", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28651", + "extensionAttributes": [], + "code": "C111132", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Axis and Voltage ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_18", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHYPTENL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chamber Hypertrophy or Enlargement ECG Assessment", + "label": "Chamber Hypertrophy or Enlargement ECG Assessment", + "synonyms": [ + "CHYPTENL", + "Chamber Hypertrophy or Enlargement" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111155", + "properties": [ + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38134", + "standardCode": { + "id": "Code_45421", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38135", + "standardCode": { + "id": "Code_45422", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38136", + "standardCode": { + "id": "Code_45423", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38137", + "standardCode": { + "id": "Code_45424", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38138", + "standardCode": { + "id": "Code_45425", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24534", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28652", + "extensionAttributes": [], + "code": "C111155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Chamber Hypertrophy or Enlargement ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_19", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TECHQUAL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Technical Quality", + "label": "ECG Technical Quality", + "synonyms": [ + "TECHQUAL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117807", + "properties": [ + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38139", + "standardCode": { + "id": "Code_45426", + "extensionAttributes": [], + "code": "C114120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ECG Recording Quality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38140", + "standardCode": { + "id": "Code_45427", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38141", + "standardCode": { + "id": "Code_45428", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38142", + "standardCode": { + "id": "Code_45429", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24535", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28653", + "extensionAttributes": [], + "code": "C117807", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "ECG Technical Quality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_20", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/IVTIACD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Intraventricular and Intraatrial Conduction ECG Assessment", + "label": "Intraventricular and Intraatrial Conduction ECG Assessment", + "synonyms": [ + "IVTIACD", + "Intraventricular-Intraatrial Conduction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111238", + "properties": [ + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38143", + "standardCode": { + "id": "Code_45430", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38144", + "standardCode": { + "id": "Code_45431", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38145", + "standardCode": { + "id": "Code_45432", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38146", + "standardCode": { + "id": "Code_45433", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38147", + "standardCode": { + "id": "Code_45434", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24536", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28654", + "extensionAttributes": [], + "code": "C111238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Intraventricular and Intraatrial Conduction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_33", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_21", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MI", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Myocardial Infarction ECG Assessment", + "label": "Myocardial Infarction ECG Assessment", + "synonyms": [ + "MI", + "Myocardial Infarction" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111280", + "properties": [ + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38148", + "standardCode": { + "id": "Code_45435", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38149", + "standardCode": { + "id": "Code_45436", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38150", + "standardCode": { + "id": "Code_45437", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38151", + "standardCode": { + "id": "Code_45438", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24537", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28655", + "extensionAttributes": [], + "code": "C111280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Myocardial Infarction ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_34", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_22", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PACEMAKR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pacemaker ECG Assessment", + "label": "Pacemaker ECG Assessment", + "synonyms": [ + "PACEMAKR", + "Pacemaker" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111285", + "properties": [ + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38152", + "standardCode": { + "id": "Code_45439", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38153", + "standardCode": { + "id": "Code_45440", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38154", + "standardCode": { + "id": "Code_45441", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38155", + "standardCode": { + "id": "Code_45442", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38156", + "standardCode": { + "id": "Code_45443", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24538", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28656", + "extensionAttributes": [], + "code": "C111285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Pacemaker ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_35", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_23", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RHYNOS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Rhythm Not Otherwise Specified ECG Assessment", + "label": "Rhythm Not Otherwise Specified ECG Assessment", + "synonyms": [ + "RHYNOS", + "Rhythm Not Otherwise Specified" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111307", + "properties": [ + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38157", + "standardCode": { + "id": "Code_45444", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38158", + "standardCode": { + "id": "Code_45445", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38159", + "standardCode": { + "id": "Code_45446", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38160", + "standardCode": { + "id": "Code_45447", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38161", + "standardCode": { + "id": "Code_45448", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24539", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28657", + "extensionAttributes": [], + "code": "C111307", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Rhythm Not Otherwise Specified ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_36", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_24", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/STSTWUW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ST Segment, T wave, and U wave ECG Assessment", + "label": "ST Segment, T wave, and U wave ECG Assessment", + "synonyms": [ + "STSTWUW", + "ST Segment, T wave, and U wave" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111363", + "properties": [ + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38162", + "standardCode": { + "id": "Code_45449", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38163", + "standardCode": { + "id": "Code_45450", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38164", + "standardCode": { + "id": "Code_45451", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38165", + "standardCode": { + "id": "Code_45452", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38166", + "standardCode": { + "id": "Code_45453", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24540", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28658", + "extensionAttributes": [], + "code": "C111363", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "ST Segment, T wave, and U wave ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_37", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_25", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SNRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "label": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "synonyms": [ + "SNRARRY", + "Sinus Node Rhythms and Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111312", + "properties": [ + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38167", + "standardCode": { + "id": "Code_45454", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38168", + "standardCode": { + "id": "Code_45455", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38169", + "standardCode": { + "id": "Code_45456", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38170", + "standardCode": { + "id": "Code_45457", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38171", + "standardCode": { + "id": "Code_45458", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24541", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28659", + "extensionAttributes": [], + "code": "C111312", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Sinus Node Rhythm and Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_38", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_26", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Arrhythmia ECG Assessment", + "label": "Supraventricular Arrhythmia ECG Assessment", + "synonyms": [ + "SPRARRY", + "Supraventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111320", + "properties": [ + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38172", + "standardCode": { + "id": "Code_45459", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38173", + "standardCode": { + "id": "Code_45460", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38174", + "standardCode": { + "id": "Code_45461", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38175", + "standardCode": { + "id": "Code_45462", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38176", + "standardCode": { + "id": "Code_45463", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24542", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28660", + "extensionAttributes": [], + "code": "C111320", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_39", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_27", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPRTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Supraventricular Tachyarrhythmia ECG Assessment", + "label": "Supraventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "SPRTARRY", + "Supraventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111321", + "properties": [ + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38177", + "standardCode": { + "id": "Code_45464", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38178", + "standardCode": { + "id": "Code_45465", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38179", + "standardCode": { + "id": "Code_45466", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38180", + "standardCode": { + "id": "Code_45467", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38181", + "standardCode": { + "id": "Code_45468", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24543", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28661", + "extensionAttributes": [], + "code": "C111321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Supraventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_40", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_28", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate PR Interval", + "label": "Aggregate PR Interval", + "synonyms": [ + "PR Interval Aggregate", + "PQ Interval Aggregate", + "PRAG", + "PQAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117773", + "properties": [ + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38182", + "standardCode": { + "id": "Code_45469", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38183", + "standardCode": { + "id": "Code_45470", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38184", + "standardCode": { + "id": "Code_45471", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38185", + "standardCode": { + "id": "Code_45472", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38186", + "standardCode": { + "id": "Code_45473", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38187", + "standardCode": { + "id": "Code_45474", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38188", + "standardCode": { + "id": "Code_45475", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24544", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28662", + "extensionAttributes": [], + "code": "C117773", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate PR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_41", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_29", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QRS Duration", + "label": "Aggregate QRS Duration", + "synonyms": [ + "QRS Aggregate Duration", + "QRSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117779", + "properties": [ + { + "id": "BiomedicalConceptProperty_186", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38189", + "standardCode": { + "id": "Code_45476", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_187", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38190", + "standardCode": { + "id": "Code_45477", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_188", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38191", + "standardCode": { + "id": "Code_45478", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_189", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38192", + "standardCode": { + "id": "Code_45479", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_190", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38193", + "standardCode": { + "id": "Code_45480", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_191", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38194", + "standardCode": { + "id": "Code_45481", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_192", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38195", + "standardCode": { + "id": "Code_45482", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24545", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28663", + "extensionAttributes": [], + "code": "C117779", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QRS Duration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_42", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_30", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QT Interval", + "label": "Aggregate QT Interval", + "synonyms": [ + "QT Interval Aggregate", + "QTAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117783", + "properties": [ + { + "id": "BiomedicalConceptProperty_193", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38196", + "standardCode": { + "id": "Code_45483", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_194", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38197", + "standardCode": { + "id": "Code_45484", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_195", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38198", + "standardCode": { + "id": "Code_45485", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_196", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38199", + "standardCode": { + "id": "Code_45486", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_197", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38200", + "standardCode": { + "id": "Code_45487", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_198", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38201", + "standardCode": { + "id": "Code_45488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_199", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38202", + "standardCode": { + "id": "Code_45489", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24546", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28664", + "extensionAttributes": [], + "code": "C117783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QT Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_43", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_31", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCBAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCB Interval", + "label": "Aggregate QTCB Interval", + "synonyms": [ + "QTCB Interval Aggregate", + "QTCBAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117784", + "properties": [ + { + "id": "BiomedicalConceptProperty_200", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38203", + "standardCode": { + "id": "Code_45490", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_201", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38204", + "standardCode": { + "id": "Code_45491", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_202", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38205", + "standardCode": { + "id": "Code_45492", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_203", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38206", + "standardCode": { + "id": "Code_45493", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_204", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38207", + "standardCode": { + "id": "Code_45494", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_205", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38208", + "standardCode": { + "id": "Code_45495", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_206", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38209", + "standardCode": { + "id": "Code_45496", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24547", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28665", + "extensionAttributes": [], + "code": "C117784", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCB Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_44", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_32", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCFAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate QTCF Interval", + "label": "Aggregate QTCF Interval", + "synonyms": [ + "QTCF Interval Aggregate", + "QTCFAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117786", + "properties": [ + { + "id": "BiomedicalConceptProperty_207", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38210", + "standardCode": { + "id": "Code_45497", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_208", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38211", + "standardCode": { + "id": "Code_45498", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_209", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38212", + "standardCode": { + "id": "Code_45499", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_210", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38213", + "standardCode": { + "id": "Code_45500", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_211", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38214", + "standardCode": { + "id": "Code_45501", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_212", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38215", + "standardCode": { + "id": "Code_45502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_213", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38216", + "standardCode": { + "id": "Code_45503", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24548", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28666", + "extensionAttributes": [], + "code": "C117786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Aggregate QTCF Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_45", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_33", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RRAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aggregate RR Interval", + "label": "Aggregate RR Interval", + "synonyms": [ + "RR Interval Aggregate", + "RRAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117791", + "properties": [ + { + "id": "BiomedicalConceptProperty_214", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38217", + "standardCode": { + "id": "Code_45504", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_215", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38218", + "standardCode": { + "id": "Code_45505", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_216", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38219", + "standardCode": { + "id": "Code_45506", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_217", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38220", + "standardCode": { + "id": "Code_45507", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_218", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38221", + "standardCode": { + "id": "Code_45508", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_219", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38222", + "standardCode": { + "id": "Code_45509", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_220", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38223", + "standardCode": { + "id": "Code_45510", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24549", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28667", + "extensionAttributes": [], + "code": "C117791", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Aggregate RR Interval", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_46", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_34", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGHRMN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Mean Heart Rate by Electrocardiogram", + "label": "Mean Heart Rate by Electrocardiogram", + "synonyms": [ + "ECG Mean Heart Rate", + "EKG Mean Heart Rate", + "EGHRMN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119259", + "properties": [ + { + "id": "BiomedicalConceptProperty_221", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38224", + "standardCode": { + "id": "Code_45511", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_222", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3027", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_45513", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38225", + "standardCode": { + "id": "Code_45512", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_223", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38227", + "standardCode": { + "id": "Code_45514", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_224", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38228", + "standardCode": { + "id": "Code_45515", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_225", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38229", + "standardCode": { + "id": "Code_45516", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_226", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38230", + "standardCode": { + "id": "Code_45517", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24550", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28668", + "extensionAttributes": [], + "code": "C119259", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Mean Heart Rate by Electrocardiogram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_47", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_35", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QRS_AXIS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QRS Axis", + "label": "QRS Axis", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C118165", + "properties": [ + { + "id": "BiomedicalConceptProperty_227", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38231", + "standardCode": { + "id": "Code_45518", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_228", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3028", + "instanceType": "ResponseCode", + "name": "deg", + "label": "deg", + "isEnabled": true, + "code": { + "id": "Code_45520", + "extensionAttributes": [], + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "deg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38232", + "standardCode": { + "id": "Code_45519", + "extensionAttributes": [], + "code": "C68667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Degree Unit of Plane Angle", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_229", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38234", + "standardCode": { + "id": "Code_45521", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_230", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38235", + "standardCode": { + "id": "Code_45522", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_231", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38236", + "standardCode": { + "id": "Code_45523", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_232", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38237", + "standardCode": { + "id": "Code_45524", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24551", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28669", + "extensionAttributes": [], + "code": "C118165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QRS Axis", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_48", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_36", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/QTCUNSAG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "QTc Correction Method Unspecified, Aggregate", + "label": "QTc Correction Method Unspecified, Aggregate", + "synonyms": [ + "QTCUNSAG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C174285", + "properties": [ + { + "id": "BiomedicalConceptProperty_233", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38238", + "standardCode": { + "id": "Code_45525", + "extensionAttributes": [], + "code": "C25330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Duration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_234", + "extensionAttributes": [], + "name": "EGORRESU", + "label": "EGORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38239", + "standardCode": { + "id": "Code_45526", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_235", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38240", + "standardCode": { + "id": "Code_45527", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_236", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38241", + "standardCode": { + "id": "Code_45528", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_237", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38242", + "standardCode": { + "id": "Code_45529", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_238", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38243", + "standardCode": { + "id": "Code_45530", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_239", + "extensionAttributes": [], + "name": "EGENDTC", + "label": "EGENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38244", + "standardCode": { + "id": "Code_45531", + "extensionAttributes": [], + "code": "C82516", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24552", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28670", + "extensionAttributes": [], + "code": "C174285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "QTc Correction Method Unspecified, Aggregate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_49", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_37", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Arrhythmia ECG Assessment", + "label": "Ventricular Arrhythmia ECG Assessment", + "synonyms": [ + "VTARRY", + "Ventricular Arrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111330", + "properties": [ + { + "id": "BiomedicalConceptProperty_240", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38245", + "standardCode": { + "id": "Code_45532", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_241", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38246", + "standardCode": { + "id": "Code_45533", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_242", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38247", + "standardCode": { + "id": "Code_45534", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_243", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38248", + "standardCode": { + "id": "Code_45535", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_244", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38249", + "standardCode": { + "id": "Code_45536", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24553", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28671", + "extensionAttributes": [], + "code": "C111330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Arrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_50", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_38", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VTTARRY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ventricular Tachyarrhythmia ECG Assessment", + "label": "Ventricular Tachyarrhythmia ECG Assessment", + "synonyms": [ + "VTTARRY", + "Ventricular Tachyarrhythmias" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111331", + "properties": [ + { + "id": "BiomedicalConceptProperty_245", + "extensionAttributes": [], + "name": "EGORRES", + "label": "EGORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38250", + "standardCode": { + "id": "Code_45537", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_246", + "extensionAttributes": [], + "name": "EGPOS", + "label": "EGPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38251", + "standardCode": { + "id": "Code_45538", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_247", + "extensionAttributes": [], + "name": "EGMETHOD", + "label": "EGMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38252", + "standardCode": { + "id": "Code_45539", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_248", + "extensionAttributes": [], + "name": "EGEVAL", + "label": "EGEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38253", + "standardCode": { + "id": "Code_45540", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_249", + "extensionAttributes": [], + "name": "EGDTC", + "label": "EGDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38254", + "standardCode": { + "id": "Code_45541", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24554", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28672", + "extensionAttributes": [], + "code": "C111331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-17", + "decode": "Ventricular Tachyarrhythmia ECG Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_51", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_39", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCANCHEST", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "id": "BiomedicalConceptProperty_250", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38255", + "standardCode": { + "id": "Code_45542", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_251", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3029", + "instanceType": "ResponseCode", + "name": "CT SCAN", + "label": "CT SCAN", + "isEnabled": true, + "code": { + "id": "Code_45544", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CT SCAN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38256", + "standardCode": { + "id": "Code_45543", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_252", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38258", + "standardCode": { + "id": "Code_45545", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_253", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38259", + "standardCode": { + "id": "Code_45546", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_254", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3030", + "instanceType": "ResponseCode", + "name": "CHEST", + "label": "CHEST", + "isEnabled": true, + "code": { + "id": "Code_45548", + "extensionAttributes": [], + "code": "C25389", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "CHEST", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38260", + "standardCode": { + "id": "Code_45547", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_255", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38262", + "standardCode": { + "id": "Code_45549", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_256", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38263", + "standardCode": { + "id": "Code_45550", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-07-14", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_52", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_40", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "id": "BiomedicalConceptProperty_257", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38264", + "standardCode": { + "id": "Code_45551", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_258", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3031", + "instanceType": "ResponseCode", + "name": "MRI", + "label": "MRI", + "isEnabled": true, + "code": { + "id": "Code_45553", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38265", + "standardCode": { + "id": "Code_45552", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_259", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38267", + "standardCode": { + "id": "Code_45554", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_260", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38268", + "standardCode": { + "id": "Code_45555", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_261", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3032", + "instanceType": "ResponseCode", + "name": "BRAIN", + "label": "BRAIN", + "isEnabled": true, + "code": { + "id": "Code_45557", + "extensionAttributes": [], + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38269", + "standardCode": { + "id": "Code_45556", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_262", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38271", + "standardCode": { + "id": "Code_45558", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_263", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38272", + "standardCode": { + "id": "Code_45559", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_54", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "synonyms": [ + "CMYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83056", + "properties": [ + { + "id": "BiomedicalConceptProperty_264", + "extensionAttributes": [], + "name": "Concomitant Medication Yes No Indicator", + "label": "Concomitant Medication Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38273", + "standardCode": { + "id": "Code_45560", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_265", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38274", + "standardCode": { + "id": "Code_45561", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24555", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28673", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Concomitant Medication Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_55", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_41", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CMFREE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Concomitant Therapy", + "label": "Concomitant Therapy", + "synonyms": [ + "Concomitant Medication" + ], + "reference": "/mdr/bc/biomedicalconcepts/C53630", + "properties": [ + { + "id": "BiomedicalConceptProperty_266", + "extensionAttributes": [], + "name": "CMTRT", + "label": "CMTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38275", + "standardCode": { + "id": "Code_45562", + "extensionAttributes": [], + "code": "C70902", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Agent", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_267", + "extensionAttributes": [], + "name": "CMDECOD", + "label": "CMDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38276", + "standardCode": { + "id": "Code_45563", + "extensionAttributes": [], + "code": "C83345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_268", + "extensionAttributes": [], + "name": "CMCLAS", + "label": "CMCLAS", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38277", + "standardCode": { + "id": "Code_45564", + "extensionAttributes": [], + "code": "C83219", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Class", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_269", + "extensionAttributes": [], + "name": "CMINDC", + "label": "CMINDC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38278", + "standardCode": { + "id": "Code_45565", + "extensionAttributes": [], + "code": "C83085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Indication", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_270", + "extensionAttributes": [], + "name": "CMDOSE", + "label": "CMDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38279", + "standardCode": { + "id": "Code_45566", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_271", + "extensionAttributes": [], + "name": "CMDOSTXT", + "label": "CMDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38280", + "standardCode": { + "id": "Code_45567", + "extensionAttributes": [], + "code": "C83221", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_272", + "extensionAttributes": [], + "name": "CMDOSU", + "label": "CMDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38281", + "standardCode": { + "id": "Code_45568", + "extensionAttributes": [], + "code": "C83034", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_273", + "extensionAttributes": [], + "name": "CMDOSFRM", + "label": "CMDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38282", + "standardCode": { + "id": "Code_45569", + "extensionAttributes": [], + "code": "C83110", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_274", + "extensionAttributes": [], + "name": "CMDOSFRQ", + "label": "CMDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38283", + "standardCode": { + "id": "Code_45570", + "extensionAttributes": [], + "code": "C83042", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Dose Frequency", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_275", + "extensionAttributes": [], + "name": "CMROUTE", + "label": "CMROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38284", + "standardCode": { + "id": "Code_45571", + "extensionAttributes": [], + "code": "C83120", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_276", + "extensionAttributes": [], + "name": "CMSTDTC", + "label": "CMSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38285", + "standardCode": { + "id": "Code_45572", + "extensionAttributes": [], + "code": "C83235", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_277", + "extensionAttributes": [], + "name": "CMENDTC", + "label": "CMENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38286", + "standardCode": { + "id": "Code_45573", + "extensionAttributes": [], + "code": "C83225", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Medication Use End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_278", + "extensionAttributes": [], + "name": "CMSTRF", + "label": "CMSTRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38287", + "standardCode": { + "id": "Code_45574", + "extensionAttributes": [], + "code": "C82559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_279", + "extensionAttributes": [], + "name": "CMSTRTPT", + "label": "CMSTRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38288", + "standardCode": { + "id": "Code_45575", + "extensionAttributes": [], + "code": "C82560", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Start Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_280", + "extensionAttributes": [], + "name": "CMSTTPT", + "label": "CMSTTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38289", + "standardCode": { + "id": "Code_45576", + "extensionAttributes": [], + "code": "C82575", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference Start Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_281", + "extensionAttributes": [], + "name": "CMENRF", + "label": "CMENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38290", + "standardCode": { + "id": "Code_45577", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_282", + "extensionAttributes": [], + "name": "CMENRTPT", + "label": "CMENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38291", + "standardCode": { + "id": "Code_45578", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_283", + "extensionAttributes": [], + "name": "CMENTPT", + "label": "CMENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38292", + "standardCode": { + "id": "Code_45579", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24556", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28674", + "extensionAttributes": [], + "code": "C53630", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_56", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_42", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin Measurement", + "label": "Hemoglobin Measurement", + "synonyms": [ + "Hemoglobin", + "HGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64848", + "properties": [ + { + "id": "BiomedicalConceptProperty_284", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38293", + "standardCode": { + "id": "Code_45580", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_285", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38294", + "standardCode": { + "id": "Code_45581", + "extensionAttributes": [], + "code": "C64571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_286", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3033", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45583", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38295", + "standardCode": { + "id": "Code_45582", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_287", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38297", + "standardCode": { + "id": "Code_45584", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_288", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38298", + "standardCode": { + "id": "Code_45585", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24557", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28675", + "extensionAttributes": [], + "code": "C64848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_57", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_43", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HCTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hematocrit Measurement", + "label": "Hematocrit Measurement", + "synonyms": [ + "Hematocrit", + "Packed Cell Volume", + "PCV", + "Erythrocyte Volume Fraction", + "EVF" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64796", + "properties": [ + { + "id": "BiomedicalConceptProperty_289", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38299", + "standardCode": { + "id": "Code_45586", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_290", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38300", + "standardCode": { + "id": "Code_45587", + "extensionAttributes": [], + "code": "C69174", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume Fraction", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_291", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3034", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45589", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38301", + "standardCode": { + "id": "Code_45588", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_292", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38303", + "standardCode": { + "id": "Code_45590", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_293", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38304", + "standardCode": { + "id": "Code_45591", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24558", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28676", + "extensionAttributes": [], + "code": "C64796", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hematocrit Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_58", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_44", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/RBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Count", + "label": "Erythrocyte Count", + "synonyms": [ + "RBC", + "Red Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51946", + "properties": [ + { + "id": "BiomedicalConceptProperty_294", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38305", + "standardCode": { + "id": "Code_45592", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_295", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38306", + "standardCode": { + "id": "Code_45593", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_296", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3035", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45595", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38307", + "standardCode": { + "id": "Code_45594", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_297", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38309", + "standardCode": { + "id": "Code_45596", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_298", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38310", + "standardCode": { + "id": "Code_45597", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24559", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28677", + "extensionAttributes": [], + "code": "C51946", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Erythrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_59", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_45", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCH", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Hemoglobin", + "label": "Erythrocyte Mean Corpuscular Hemoglobin", + "synonyms": [ + "RBC Mean Corpuscular Hemoglobin", + "MCH" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64797", + "properties": [ + { + "id": "BiomedicalConceptProperty_299", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38311", + "standardCode": { + "id": "Code_45598", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_300", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38312", + "standardCode": { + "id": "Code_45599", + "extensionAttributes": [], + "code": "C25709", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Measure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_301", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3036", + "instanceType": "ResponseCode", + "name": "ERYTHROCYTES", + "label": "ERYTHROCYTES", + "isEnabled": true, + "code": { + "id": "Code_45601", + "extensionAttributes": [], + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38313", + "standardCode": { + "id": "Code_45600", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_302", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38315", + "standardCode": { + "id": "Code_45602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_303", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38316", + "standardCode": { + "id": "Code_45603", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24560", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28678", + "extensionAttributes": [], + "code": "C64797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Hemoglobin", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_60", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_46", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MCV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Erythrocyte Mean Corpuscular Volume", + "label": "Erythrocyte Mean Corpuscular Volume", + "synonyms": [ + "RBC Mean Corpuscular Volume", + "MCV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64799", + "properties": [ + { + "id": "BiomedicalConceptProperty_304", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38317", + "standardCode": { + "id": "Code_45604", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_305", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3037", + "instanceType": "ResponseCode", + "name": "fL", + "label": "fL", + "isEnabled": true, + "code": { + "id": "Code_45606", + "extensionAttributes": [], + "code": "C64780", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "fL", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38318", + "standardCode": { + "id": "Code_45605", + "extensionAttributes": [], + "code": "C44279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Volume", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_306", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3038", + "instanceType": "ResponseCode", + "name": "ERYTHROCYTES", + "label": "ERYTHROCYTES", + "isEnabled": true, + "code": { + "id": "Code_45608", + "extensionAttributes": [], + "code": "C12521", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "ERYTHROCYTES", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38320", + "standardCode": { + "id": "Code_45607", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_307", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38322", + "standardCode": { + "id": "Code_45609", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_308", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38323", + "standardCode": { + "id": "Code_45610", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24561", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28679", + "extensionAttributes": [], + "code": "C64799", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Erythrocyte Mean Corpuscular Volume", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_61", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_47", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/WBCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Leukocyte Count", + "label": "Leukocyte Count", + "synonyms": [ + "WBC", + "White Blood Cells" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51948", + "properties": [ + { + "id": "BiomedicalConceptProperty_309", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38324", + "standardCode": { + "id": "Code_45611", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_310", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38325", + "standardCode": { + "id": "Code_45612", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_311", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3039", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45614", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38326", + "standardCode": { + "id": "Code_45613", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_312", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38328", + "standardCode": { + "id": "Code_45615", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_313", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38329", + "standardCode": { + "id": "Code_45616", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24562", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28680", + "extensionAttributes": [], + "code": "C51948", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Leukocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_62", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_48", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTSGBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Segmented Neutrophil Count", + "label": "Segmented Neutrophil Count", + "synonyms": [ + "Segmented Neutrophils", + "NEUTSG" + ], + "reference": "/mdr/bc/biomedicalconcepts/C81997", + "properties": [ + { + "id": "BiomedicalConceptProperty_314", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38330", + "standardCode": { + "id": "Code_45617", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_315", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3040", + "instanceType": "ResponseCode", + "name": "10^9/L", + "label": "10^9/L", + "isEnabled": true, + "code": { + "id": "Code_45619", + "extensionAttributes": [], + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38331", + "standardCode": { + "id": "Code_45618", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_316", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3041", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45621", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38333", + "standardCode": { + "id": "Code_45620", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_317", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38335", + "standardCode": { + "id": "Code_45622", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_318", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38336", + "standardCode": { + "id": "Code_45623", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24563", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28681", + "extensionAttributes": [], + "code": "C81997", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Segmented Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_63", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_49", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Neutrophil Band Form Count", + "label": "Neutrophil Band Form Count", + "synonyms": [ + "Neutrophil Bands", + "Bands", + "NEUTB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64830", + "properties": [ + { + "id": "BiomedicalConceptProperty_319", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38337", + "standardCode": { + "id": "Code_45624", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_320", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3042", + "instanceType": "ResponseCode", + "name": "10^6/L", + "label": "10^6/L", + "isEnabled": true, + "code": { + "id": "Code_45626", + "extensionAttributes": [], + "code": "C67452", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^6/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38338", + "standardCode": { + "id": "Code_45625", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_321", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3043", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45628", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38340", + "standardCode": { + "id": "Code_45627", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_322", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38342", + "standardCode": { + "id": "Code_45629", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_323", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38343", + "standardCode": { + "id": "Code_45630", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24564", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28682", + "extensionAttributes": [], + "code": "C64830", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Neutrophil Band Form Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_64", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_50", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NEUTBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Neutrophil Count", + "label": "Absolute Neutrophil Count", + "synonyms": [ + "Neutrophils", + "Total Neutrophil Count", + "NEUT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C63321", + "properties": [ + { + "id": "BiomedicalConceptProperty_324", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38344", + "standardCode": { + "id": "Code_45631", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_325", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3044", + "instanceType": "ResponseCode", + "name": "10^9/L", + "label": "10^9/L", + "isEnabled": true, + "code": { + "id": "Code_45633", + "extensionAttributes": [], + "code": "C67255", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "10^9/L", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38345", + "standardCode": { + "id": "Code_45632", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_326", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3045", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45635", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38347", + "standardCode": { + "id": "Code_45634", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_327", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38349", + "standardCode": { + "id": "Code_45636", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_328", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38350", + "standardCode": { + "id": "Code_45637", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24565", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28683", + "extensionAttributes": [], + "code": "C63321", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Neutrophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_65", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_51", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MONOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Monocyte Count", + "label": "Monocyte Count", + "synonyms": [ + "Monocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64823", + "properties": [ + { + "id": "BiomedicalConceptProperty_329", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38351", + "standardCode": { + "id": "Code_45638", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_330", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38352", + "standardCode": { + "id": "Code_45639", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_331", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3046", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45641", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38353", + "standardCode": { + "id": "Code_45640", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_332", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38355", + "standardCode": { + "id": "Code_45642", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_333", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38356", + "standardCode": { + "id": "Code_45643", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24566", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28684", + "extensionAttributes": [], + "code": "C64823", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Monocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_66", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_52", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EOSBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Eosinophil Count", + "label": "Eosinophil Count", + "synonyms": [ + "Eosinophils" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64550", + "properties": [ + { + "id": "BiomedicalConceptProperty_334", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38357", + "standardCode": { + "id": "Code_45644", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_335", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38358", + "standardCode": { + "id": "Code_45645", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_336", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3047", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45647", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38359", + "standardCode": { + "id": "Code_45646", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_337", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38361", + "standardCode": { + "id": "Code_45648", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_338", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38362", + "standardCode": { + "id": "Code_45649", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24567", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28685", + "extensionAttributes": [], + "code": "C64550", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Eosinophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_67", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_53", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BASOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Absolute Basophil Count", + "label": "Absolute Basophil Count", + "synonyms": [ + "Basophils", + "Total Basophil Count" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64470", + "properties": [ + { + "id": "BiomedicalConceptProperty_339", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38363", + "standardCode": { + "id": "Code_45650", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_340", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38364", + "standardCode": { + "id": "Code_45651", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_341", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3048", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45653", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38365", + "standardCode": { + "id": "Code_45652", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_342", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38367", + "standardCode": { + "id": "Code_45654", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_343", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38368", + "standardCode": { + "id": "Code_45655", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3354", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3564", + "extensionAttributes": [], + "code": "C64470", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Absolute Basophil Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_68", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_54", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PLATBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Platelet Count", + "label": "Platelet Count", + "synonyms": [ + "Thrombocytes", + "Platelets", + "Anucleated Thrombocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C51951", + "properties": [ + { + "id": "BiomedicalConceptProperty_344", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38369", + "standardCode": { + "id": "Code_45656", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_345", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38370", + "standardCode": { + "id": "Code_45657", + "extensionAttributes": [], + "code": "C67391", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Number Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_346", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3049", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45659", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38371", + "standardCode": { + "id": "Code_45658", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_347", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38373", + "standardCode": { + "id": "Code_45660", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_348", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38374", + "standardCode": { + "id": "Code_45661", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24568", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28686", + "extensionAttributes": [], + "code": "C51951", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Platelet Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_69", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_55", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MICROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Microcyte Count", + "label": "Microcyte Count", + "synonyms": [ + "Microcytes", + "MICROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64822", + "properties": [ + { + "id": "BiomedicalConceptProperty_349", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38375", + "standardCode": { + "id": "Code_45662", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_350", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3050", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45664", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38376", + "standardCode": { + "id": "Code_45663", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_351", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38378", + "standardCode": { + "id": "Code_45665", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_352", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38379", + "standardCode": { + "id": "Code_45666", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24569", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28687", + "extensionAttributes": [], + "code": "C64822", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Microcyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_70", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_56", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MACROCYBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Macrocyte Count", + "label": "Macrocyte Count", + "synonyms": [ + "Macrocytes", + "MACROCY" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64821", + "properties": [ + { + "id": "BiomedicalConceptProperty_353", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38380", + "standardCode": { + "id": "Code_45667", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_354", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3051", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45669", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38381", + "standardCode": { + "id": "Code_45668", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_355", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38383", + "standardCode": { + "id": "Code_45670", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_356", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38384", + "standardCode": { + "id": "Code_45671", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24570", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28688", + "extensionAttributes": [], + "code": "C64821", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Macrocyte Count", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_71", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_57", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ANISOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Anisocyte Measurement", + "label": "Anisocyte Measurement", + "synonyms": [ + "Anisocytes", + "Anisocytosis", + "ANISO" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74797", + "properties": [ + { + "id": "BiomedicalConceptProperty_357", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38385", + "standardCode": { + "id": "Code_45672", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_358", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3052", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45674", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38386", + "standardCode": { + "id": "Code_45673", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_359", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38388", + "standardCode": { + "id": "Code_45675", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_360", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38389", + "standardCode": { + "id": "Code_45676", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24571", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28689", + "extensionAttributes": [], + "code": "C74797", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anisocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_72", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_58", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POIKILOBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Poikilocyte Measurement", + "label": "Poikilocyte Measurement", + "synonyms": [ + "POIKILO", + "Poikilocytes" + ], + "reference": "/mdr/bc/biomedicalconcepts/C79602", + "properties": [ + { + "id": "BiomedicalConceptProperty_361", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38390", + "standardCode": { + "id": "Code_45677", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_362", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3053", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45679", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38391", + "standardCode": { + "id": "Code_45678", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_363", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38393", + "standardCode": { + "id": "Code_45680", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_364", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38394", + "standardCode": { + "id": "Code_45681", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24572", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28690", + "extensionAttributes": [], + "code": "C79602", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Poikilocyte Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_73", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_59", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/POLYCHRBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Polychromasia", + "label": "Polychromasia", + "synonyms": [ + "POLYCHR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64803", + "properties": [ + { + "id": "BiomedicalConceptProperty_365", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38395", + "standardCode": { + "id": "Code_45682", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_366", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3054", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45684", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38396", + "standardCode": { + "id": "Code_45683", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_367", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38398", + "standardCode": { + "id": "Code_45685", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_368", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38399", + "standardCode": { + "id": "Code_45686", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24573", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28691", + "extensionAttributes": [], + "code": "C64803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Polychromasia", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_74", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_60", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alanine Aminotransferase Measurement", + "label": "Alanine Aminotransferase Measurement", + "synonyms": [ + "ALT", + "SGPT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64433", + "properties": [ + { + "id": "BiomedicalConceptProperty_369", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38400", + "standardCode": { + "id": "Code_45687", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_370", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38401", + "standardCode": { + "id": "Code_45688", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_371", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3055", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45690", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38402", + "standardCode": { + "id": "Code_45689", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_372", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38404", + "standardCode": { + "id": "Code_45691", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_373", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38405", + "standardCode": { + "id": "Code_45692", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24574", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28692", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alanine Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_75", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_61", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALBSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Albumin Measurement", + "label": "Albumin Measurement", + "synonyms": [ + "Albumin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64431", + "properties": [ + { + "id": "BiomedicalConceptProperty_374", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38406", + "standardCode": { + "id": "Code_45693", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_375", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38407", + "standardCode": { + "id": "Code_45694", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_376", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3056", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45696", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38408", + "standardCode": { + "id": "Code_45695", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_377", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38410", + "standardCode": { + "id": "Code_45697", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_378", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38411", + "standardCode": { + "id": "Code_45698", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24575", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28693", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Albumin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_76", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_62", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ALPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Alkaline Phosphatase Measurement", + "label": "Alkaline Phosphatase Measurement", + "synonyms": [ + "Alkaline Phosphatase" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64432", + "properties": [ + { + "id": "BiomedicalConceptProperty_379", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38412", + "standardCode": { + "id": "Code_45699", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_380", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38413", + "standardCode": { + "id": "Code_45700", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_381", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3057", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45702", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38414", + "standardCode": { + "id": "Code_45701", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_382", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38416", + "standardCode": { + "id": "Code_45703", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_383", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38417", + "standardCode": { + "id": "Code_45704", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24576", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28694", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Alkaline Phosphatase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_77", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_63", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ASTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Aspartate Aminotransferase Measurement", + "label": "Aspartate Aminotransferase Measurement", + "synonyms": [ + "AST", + "SGOT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64467", + "properties": [ + { + "id": "BiomedicalConceptProperty_384", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38418", + "standardCode": { + "id": "Code_45705", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_385", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38419", + "standardCode": { + "id": "Code_45706", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_386", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3058", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45708", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38420", + "standardCode": { + "id": "Code_45707", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_387", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38422", + "standardCode": { + "id": "Code_45709", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_388", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38423", + "standardCode": { + "id": "Code_45710", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24577", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28695", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Aspartate Aminotransferase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_78", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_64", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CREATSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Creatinine Measurement", + "label": "Creatinine Measurement", + "synonyms": [ + "Creatinine" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64547", + "properties": [ + { + "id": "BiomedicalConceptProperty_389", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38424", + "standardCode": { + "id": "Code_45711", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_390", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38425", + "standardCode": { + "id": "Code_45712", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_391", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3059", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45714", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38426", + "standardCode": { + "id": "Code_45713", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_392", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38428", + "standardCode": { + "id": "Code_45715", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_393", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38429", + "standardCode": { + "id": "Code_45716", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3355", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3565", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Creatinine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_79", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_65", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Potassium Measurement", + "label": "Potassium Measurement", + "synonyms": [ + "Potassium", + "K" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64853", + "properties": [ + { + "id": "BiomedicalConceptProperty_394", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38430", + "standardCode": { + "id": "Code_45717", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_395", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38431", + "standardCode": { + "id": "Code_45718", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_396", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3060", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45720", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38432", + "standardCode": { + "id": "Code_45719", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_397", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38434", + "standardCode": { + "id": "Code_45721", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_398", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38435", + "standardCode": { + "id": "Code_45722", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24578", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28696", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Potassium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_80", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_66", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SODIUMBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Sodium Measurement", + "label": "Sodium Measurement", + "synonyms": [ + "Sodium", + "NA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64809", + "properties": [ + { + "id": "BiomedicalConceptProperty_399", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38436", + "standardCode": { + "id": "Code_45723", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_400", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38437", + "standardCode": { + "id": "Code_45724", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_401", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3061", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45726", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38438", + "standardCode": { + "id": "Code_45725", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_402", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38440", + "standardCode": { + "id": "Code_45727", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_403", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38441", + "standardCode": { + "id": "Code_45728", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24579", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28697", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Sodium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_81", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_67", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UREANSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urea Nitrogen Measurement", + "label": "Urea Nitrogen Measurement", + "synonyms": [ + "Urea Nitrogen" + ], + "reference": "/mdr/bc/biomedicalconcepts/C125949", + "properties": [ + { + "id": "BiomedicalConceptProperty_404", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38442", + "standardCode": { + "id": "Code_45729", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_405", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38443", + "standardCode": { + "id": "Code_45730", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_406", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3062", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45732", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38444", + "standardCode": { + "id": "Code_45731", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_407", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38446", + "standardCode": { + "id": "Code_45733", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_408", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38447", + "standardCode": { + "id": "Code_45734", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24580", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28698", + "extensionAttributes": [], + "code": "C125949", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urea Nitrogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_82", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_68", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BICARBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Bicarbonate Measurement", + "label": "Bicarbonate Measurement", + "synonyms": [ + "Bicarbonate", + "HCO3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74667", + "properties": [ + { + "id": "BiomedicalConceptProperty_419", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38460", + "standardCode": { + "id": "Code_45747", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_420", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38461", + "standardCode": { + "id": "Code_45748", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_421", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3065", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45750", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38462", + "standardCode": { + "id": "Code_45749", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_422", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38464", + "standardCode": { + "id": "Code_45751", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_423", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38465", + "standardCode": { + "id": "Code_45752", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24581", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28699", + "extensionAttributes": [], + "code": "C74667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Bicarbonate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_83", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_69", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CLBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Chloride Measurement", + "label": "Chloride Measurement", + "synonyms": [ + "Chloride", + "CL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64495", + "properties": [ + { + "id": "BiomedicalConceptProperty_429", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38472", + "standardCode": { + "id": "Code_45759", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_430", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38473", + "standardCode": { + "id": "Code_45760", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_431", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3067", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45762", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38474", + "standardCode": { + "id": "Code_45761", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_432", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38476", + "standardCode": { + "id": "Code_45763", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_433", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38477", + "standardCode": { + "id": "Code_45764", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24582", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28700", + "extensionAttributes": [], + "code": "C64495", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Chloride Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_84", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_70", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": "Total Bilirubin Measurement", + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_439", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38484", + "standardCode": { + "id": "Code_45771", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_440", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38485", + "standardCode": { + "id": "Code_45772", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_441", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3069", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45774", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38486", + "standardCode": { + "id": "Code_45773", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_442", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38488", + "standardCode": { + "id": "Code_45775", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_443", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38489", + "standardCode": { + "id": "Code_45776", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_85", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_71", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GGTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Gamma Glutamyl Transpeptidase Measurement", + "label": "Gamma Glutamyl Transpeptidase Measurement", + "synonyms": [ + "Gamma Glutamyl Transferase", + "GGT", + "GGTP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64847", + "properties": [ + { + "id": "BiomedicalConceptProperty_449", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38496", + "standardCode": { + "id": "Code_45783", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_450", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38497", + "standardCode": { + "id": "Code_45784", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_451", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3071", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45786", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38498", + "standardCode": { + "id": "Code_45785", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_452", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38500", + "standardCode": { + "id": "Code_45787", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_453", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38501", + "standardCode": { + "id": "Code_45788", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_37996", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45283", + "extensionAttributes": [], + "code": "C64847", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Gamma Glutamyl Transpeptidase Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_86", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_72", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/URATESERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urate Measurement", + "label": "Urate Measurement", + "synonyms": [ + "Urate", + "Uric Acid" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64814", + "properties": [ + { + "id": "BiomedicalConceptProperty_459", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38508", + "standardCode": { + "id": "Code_45795", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_460", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38509", + "standardCode": { + "id": "Code_45796", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_461", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3073", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45798", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38510", + "standardCode": { + "id": "Code_45797", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_462", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38512", + "standardCode": { + "id": "Code_45799", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_463", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38513", + "standardCode": { + "id": "Code_45800", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24584", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28702", + "extensionAttributes": [], + "code": "C64814", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_87", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_73", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHOSSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Phosphate Measurement", + "label": "Phosphate Measurement", + "synonyms": [ + "Phosphorus", + "Phosphate" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64857", + "properties": [ + { + "id": "BiomedicalConceptProperty_469", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38520", + "standardCode": { + "id": "Code_45807", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_470", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38521", + "standardCode": { + "id": "Code_45808", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_471", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3075", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45810", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38522", + "standardCode": { + "id": "Code_45809", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_472", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38524", + "standardCode": { + "id": "Code_45811", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_473", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38525", + "standardCode": { + "id": "Code_45812", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24585", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28703", + "extensionAttributes": [], + "code": "C64857", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Phosphate Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_88", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_74", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CABLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Calcium Measurement", + "label": "Calcium Measurement", + "synonyms": [ + "Calcium", + "CA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64488", + "properties": [ + { + "id": "BiomedicalConceptProperty_480", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38533", + "standardCode": { + "id": "Code_45820", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_481", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38534", + "standardCode": { + "id": "Code_45821", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_482", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3077", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45823", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38535", + "standardCode": { + "id": "Code_45822", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_483", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38537", + "standardCode": { + "id": "Code_45824", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_484", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38538", + "standardCode": { + "id": "Code_45825", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24586", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28704", + "extensionAttributes": [], + "code": "C64488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Calcium Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_89", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_75", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": "Glucose Measurement", + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_495", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38551", + "standardCode": { + "id": "Code_45838", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_496", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38552", + "standardCode": { + "id": "Code_45839", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_497", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3080", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45841", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38553", + "standardCode": { + "id": "Code_45840", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_498", + "extensionAttributes": [], + "name": "LBMETHOD", + "label": "LBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38555", + "standardCode": { + "id": "Code_45842", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_499", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38556", + "standardCode": { + "id": "Code_45843", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_500", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38557", + "standardCode": { + "id": "Code_45844", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_90", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_76", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": "Total Protein Measurement", + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_506", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38564", + "standardCode": { + "id": "Code_45851", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_507", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38565", + "standardCode": { + "id": "Code_45852", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_508", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3082", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45854", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38566", + "standardCode": { + "id": "Code_45853", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_509", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38568", + "standardCode": { + "id": "Code_45855", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_510", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38569", + "standardCode": { + "id": "Code_45856", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_91", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_77", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CHOLSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Cholesterol Measurement", + "label": "Cholesterol Measurement", + "synonyms": [ + "CHOL", + "Cholesterol", + "Total Cholesterol" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105586", + "properties": [ + { + "id": "BiomedicalConceptProperty_516", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38576", + "standardCode": { + "id": "Code_45863", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_517", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38577", + "standardCode": { + "id": "Code_45864", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_518", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3084", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45866", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38578", + "standardCode": { + "id": "Code_45865", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_519", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38580", + "standardCode": { + "id": "Code_45867", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_520", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38581", + "standardCode": { + "id": "Code_45868", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24589", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28707", + "extensionAttributes": [], + "code": "C105586", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Cholesterol Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_92", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_78", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3UPSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Uptake Measurement", + "label": "Triiodothyronine Uptake Measurement", + "synonyms": [ + "T3UP", + "T3U", + "Triiodothyronine Resin Uptake" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74748", + "properties": [ + { + "id": "BiomedicalConceptProperty_526", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38588", + "standardCode": { + "id": "Code_45875", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_527", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38589", + "standardCode": { + "id": "Code_45876", + "extensionAttributes": [], + "code": "C48570", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Percent Unit", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_528", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3086", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45878", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38590", + "standardCode": { + "id": "Code_45877", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_529", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38592", + "standardCode": { + "id": "Code_45879", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_530", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38593", + "standardCode": { + "id": "Code_45880", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24590", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28708", + "extensionAttributes": [], + "code": "C74748", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Uptake Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_93", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_79", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T3SERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Triiodothyronine Measurement", + "label": "Triiodothyronine Measurement", + "synonyms": [ + "T3", + "Total T3" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74747", + "properties": [ + { + "id": "BiomedicalConceptProperty_535", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38599", + "standardCode": { + "id": "Code_45886", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_536", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38600", + "standardCode": { + "id": "Code_45887", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_537", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3088", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45889", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38601", + "standardCode": { + "id": "Code_45888", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_538", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38603", + "standardCode": { + "id": "Code_45890", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_539", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38604", + "standardCode": { + "id": "Code_45891", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24591", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28709", + "extensionAttributes": [], + "code": "C74747", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Triiodothyronine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_94", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_80", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Measurement", + "label": "Free Thyroxine Measurement", + "synonyms": [ + "Free T4", + "T4FR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74786", + "properties": [ + { + "id": "BiomedicalConceptProperty_545", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38611", + "standardCode": { + "id": "Code_45898", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_546", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38612", + "standardCode": { + "id": "Code_45899", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_547", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3090", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45901", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38613", + "standardCode": { + "id": "Code_45900", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_548", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38615", + "standardCode": { + "id": "Code_45902", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_549", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38616", + "standardCode": { + "id": "Code_45903", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24592", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28710", + "extensionAttributes": [], + "code": "C74786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_95", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_81", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/T4FRIDXSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Free Thyroxine Index", + "label": "Free Thyroxine Index", + "synonyms": [ + "T4FRIDX" + ], + "reference": "/mdr/bc/biomedicalconcepts/C170598", + "properties": [ + { + "id": "BiomedicalConceptProperty_555", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38623", + "standardCode": { + "id": "Code_45910", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_556", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3092", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_45912", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38624", + "standardCode": { + "id": "Code_45911", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_557", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38626", + "standardCode": { + "id": "Code_45913", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_558", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38627", + "standardCode": { + "id": "Code_45914", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24593", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28711", + "extensionAttributes": [], + "code": "C170598", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Free Thyroxine Index", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_96", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_82", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TSHBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Thyrotropin Measurement", + "label": "Thyrotropin Measurement", + "synonyms": [ + "TSH", + "Thyrotropin" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64813", + "properties": [ + { + "id": "BiomedicalConceptProperty_564", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38634", + "standardCode": { + "id": "Code_45921", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_565", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38635", + "standardCode": { + "id": "Code_45922", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_566", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3094", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45924", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38636", + "standardCode": { + "id": "Code_45923", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_567", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38638", + "standardCode": { + "id": "Code_45925", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_568", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38639", + "standardCode": { + "id": "Code_45926", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24594", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28712", + "extensionAttributes": [], + "code": "C64813", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Thyrotropin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_97", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_83", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB9BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Folic Acid Measurement", + "label": "Folic Acid Measurement", + "synonyms": [ + "Folate", + "Folic Acid", + "Vitamin B9", + "VITB9" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74676", + "properties": [ + { + "id": "BiomedicalConceptProperty_574", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38647", + "standardCode": { + "id": "Code_45934", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_575", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38648", + "standardCode": { + "id": "Code_45935", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_576", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3097", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45937", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38649", + "standardCode": { + "id": "Code_45936", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_577", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38651", + "standardCode": { + "id": "Code_45938", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_578", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38652", + "standardCode": { + "id": "Code_45939", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3428", + "extensionAttributes": [], + "code": "C74676", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Folic Acid Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_98", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_84", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/VITB12BLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Vitamin B12 Measurement", + "label": "Vitamin B12 Measurement", + "synonyms": [ + "Cobalamin", + "Vitamin B12", + "VITB12" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64817", + "properties": [ + { + "id": "BiomedicalConceptProperty_584", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38660", + "standardCode": { + "id": "Code_45947", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_585", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38661", + "standardCode": { + "id": "Code_45948", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_586", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3100", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_45950", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38662", + "standardCode": { + "id": "Code_45949", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_587", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38664", + "standardCode": { + "id": "Code_45951", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_588", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38665", + "standardCode": { + "id": "Code_45952", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24595", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28713", + "extensionAttributes": [], + "code": "C64817", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Vitamin B12 Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_99", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_85", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPLAB", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum Antibody Measurement", + "label": "Treponema pallidum Antibody Measurement", + "synonyms": [ + "TPLAB", + "Treponema pallidum Antibody", + "Syphilis Antibody" + ], + "reference": "/mdr/bc/biomedicalconcepts/C132388", + "properties": [ + { + "id": "BiomedicalConceptProperty_592", + "extensionAttributes": [], + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3102", + "instanceType": "ResponseCode", + "name": "DETECTION", + "label": "DETECTION", + "isEnabled": true, + "code": { + "id": "Code_45958", + "extensionAttributes": [], + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38670", + "standardCode": { + "id": "Code_45957", + "extensionAttributes": [], + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_593", + "extensionAttributes": [], + "name": "MBORRES", + "label": "MBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38672", + "standardCode": { + "id": "Code_45959", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_594", + "extensionAttributes": [], + "name": "MBSPEC", + "label": "MBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3103", + "instanceType": "ResponseCode", + "name": "SERUM", + "label": "SERUM", + "isEnabled": true, + "code": { + "id": "Code_45961", + "extensionAttributes": [], + "code": "C13325", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38673", + "standardCode": { + "id": "Code_45960", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_595", + "extensionAttributes": [], + "name": "MBMETHOD", + "label": "MBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38675", + "standardCode": { + "id": "Code_45962", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_596", + "extensionAttributes": [], + "name": "MBDTC", + "label": "MBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38676", + "standardCode": { + "id": "Code_45963", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24596", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28714", + "extensionAttributes": [], + "code": "C132388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum Antibody Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_100", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_86", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/TPADNA", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Treponema pallidum DNA Measurement", + "label": "Treponema pallidum DNA Measurement", + "synonyms": [ + "TPADNA", + "Syphilis DNA" + ], + "reference": "/mdr/bc/biomedicalconcepts/C198341", + "properties": [ + { + "id": "BiomedicalConceptProperty_606", + "extensionAttributes": [], + "name": "MBTSTDTL", + "label": "MBTSTDTL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3106", + "instanceType": "ResponseCode", + "name": "DETECTION", + "label": "DETECTION", + "isEnabled": true, + "code": { + "id": "Code_45976", + "extensionAttributes": [], + "code": "C174330", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "DETECTION", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38688", + "standardCode": { + "id": "Code_45975", + "extensionAttributes": [], + "code": "C117062", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Measurement, Test or Examination Detail", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_607", + "extensionAttributes": [], + "name": "MBORRES", + "label": "MBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38690", + "standardCode": { + "id": "Code_45977", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_608", + "extensionAttributes": [], + "name": "MBSPEC", + "label": "MBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38691", + "standardCode": { + "id": "Code_45978", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_609", + "extensionAttributes": [], + "name": "MBMETHOD", + "label": "MBMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3107", + "instanceType": "ResponseCode", + "name": "LINE PROBE ASSAY", + "label": "LINE PROBE ASSAY", + "isEnabled": true, + "code": { + "id": "Code_45980", + "extensionAttributes": [], + "code": "C102656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "LINE PROBE ASSAY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38692", + "standardCode": { + "id": "Code_45979", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_610", + "extensionAttributes": [], + "name": "MBDTC", + "label": "MBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38694", + "standardCode": { + "id": "Code_45981", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24597", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28715", + "extensionAttributes": [], + "code": "C198341", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Treponema pallidum DNA Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_101", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_87", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/COLORURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Color Assessment", + "label": "Color Assessment", + "synonyms": [ + "COLOR", + "Color" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64546", + "properties": [ + { + "id": "BiomedicalConceptProperty_616", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38701", + "standardCode": { + "id": "Code_45988", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_617", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3109", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_45990", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38702", + "standardCode": { + "id": "Code_45989", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_618", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38704", + "standardCode": { + "id": "Code_45991", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24598", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28716", + "extensionAttributes": [], + "code": "C64546", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Color Assessment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_102", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_88", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SPGRAVURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Specific Gravity", + "label": "Specific Gravity", + "synonyms": [ + "SPGRAV" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64832", + "properties": [ + { + "id": "BiomedicalConceptProperty_629", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38717", + "standardCode": { + "id": "Code_46004", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_630", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3112", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46006", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38718", + "standardCode": { + "id": "Code_46005", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_631", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38720", + "standardCode": { + "id": "Code_46007", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_632", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38721", + "standardCode": { + "id": "Code_46008", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3429", + "extensionAttributes": [], + "code": "C64832", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Specific Gravity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_103", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_89", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTSERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Protein Measurement", + "label": null, + "synonyms": [ + "Protein" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64858", + "properties": [ + { + "id": "BiomedicalConceptProperty_633", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38722", + "standardCode": { + "id": "Code_46009", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_634", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38723", + "standardCode": { + "id": "Code_46010", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_635", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3113", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_46012", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38724", + "standardCode": { + "id": "Code_46011", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_636", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38726", + "standardCode": { + "id": "Code_46013", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_637", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38727", + "standardCode": { + "id": "Code_46014", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24588", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28706", + "extensionAttributes": [], + "code": "C64858", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Protein Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_104", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_144", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/GLUCURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Glucose Measurement", + "label": null, + "synonyms": [ + "Glucose" + ], + "reference": "/mdr/bc/biomedicalconcepts/C105585", + "properties": [ + { + "id": "BiomedicalConceptProperty_643", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38734", + "standardCode": { + "id": "Code_46021", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_644", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38735", + "standardCode": { + "id": "Code_46022", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_645", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3115", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46024", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38736", + "standardCode": { + "id": "Code_46023", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_646", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38738", + "standardCode": { + "id": "Code_46025", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_647", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38739", + "standardCode": { + "id": "Code_46026", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24587", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28705", + "extensionAttributes": [], + "code": "C105585", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Glucose Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_105", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_91", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/KETONESURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Ketone Measurement", + "label": "Ketone Measurement", + "synonyms": [ + "Ketones" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64854", + "properties": [ + { + "id": "BiomedicalConceptProperty_652", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38745", + "standardCode": { + "id": "Code_46032", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_653", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38746", + "standardCode": { + "id": "Code_46033", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_654", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3117", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46035", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38747", + "standardCode": { + "id": "Code_46034", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_655", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38749", + "standardCode": { + "id": "Code_46036", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_656", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38750", + "standardCode": { + "id": "Code_46037", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24599", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28717", + "extensionAttributes": [], + "code": "C64854", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Ketone Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_106", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_92", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/BILISERPL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Total Bilirubin Measurement", + "label": null, + "synonyms": [ + "Bilirubin", + "Total Bilirubin Level" + ], + "reference": "/mdr/bc/biomedicalconcepts/C38037", + "properties": [ + { + "id": "BiomedicalConceptProperty_657", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38751", + "standardCode": { + "id": "Code_46038", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_658", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38752", + "standardCode": { + "id": "Code_46039", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_659", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3118", + "instanceType": "ResponseCode", + "name": "SERUM OR PLASMA", + "label": "SERUM OR PLASMA", + "isEnabled": true, + "code": { + "id": "Code_46041", + "extensionAttributes": [], + "code": "C105706", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SERUM OR PLASMA", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38753", + "standardCode": { + "id": "Code_46040", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_660", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38755", + "standardCode": { + "id": "Code_46042", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_661", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38756", + "standardCode": { + "id": "Code_46043", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24583", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28701", + "extensionAttributes": [], + "code": "C38037", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Total Bilirubin Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_107", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_93", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/UROBILURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Urobilinogen Measurement", + "label": "Urobilinogen Measurement", + "synonyms": [ + "Urobilinogen", + "UROBIL" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64816", + "properties": [ + { + "id": "BiomedicalConceptProperty_667", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38763", + "standardCode": { + "id": "Code_46050", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_668", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38764", + "standardCode": { + "id": "Code_46051", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_669", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3120", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46053", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38765", + "standardCode": { + "id": "Code_46052", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_670", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38767", + "standardCode": { + "id": "Code_46054", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_671", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38768", + "standardCode": { + "id": "Code_46055", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24600", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28718", + "extensionAttributes": [], + "code": "C64816", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Urobilinogen Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_108", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_94", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/OCCBLDSTOOL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Occult Blood Measurement", + "label": "Occult Blood Measurement", + "synonyms": [ + "Occult Blood", + "OCCBLD" + ], + "reference": "/mdr/bc/biomedicalconcepts/C74686", + "properties": [ + { + "id": "BiomedicalConceptProperty_676", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38774", + "standardCode": { + "id": "Code_46061", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_677", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3122", + "instanceType": "ResponseCode", + "name": "STOOL", + "label": "STOOL", + "isEnabled": true, + "code": { + "id": "Code_46063", + "extensionAttributes": [], + "code": "C13234", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "STOOL", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38775", + "standardCode": { + "id": "Code_46062", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_678", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38777", + "standardCode": { + "id": "Code_46064", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_679", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38778", + "standardCode": { + "id": "Code_46065", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3356", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3566", + "extensionAttributes": [], + "code": "C74686", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Occult Blood Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_109", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_95", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/NITRITEURIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Nitrite Measurement", + "label": "Nitrite Measurement", + "synonyms": [ + "NITRITE" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64810", + "properties": [ + { + "id": "BiomedicalConceptProperty_684", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38784", + "standardCode": { + "id": "Code_46071", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_685", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38785", + "standardCode": { + "id": "Code_46072", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_686", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3124", + "instanceType": "ResponseCode", + "name": "URINE", + "label": "URINE", + "isEnabled": true, + "code": { + "id": "Code_46074", + "extensionAttributes": [], + "code": "C13283", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "URINE", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38786", + "standardCode": { + "id": "Code_46073", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_687", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38788", + "standardCode": { + "id": "Code_46075", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_688", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38789", + "standardCode": { + "id": "Code_46076", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_3357", + "extensionAttributes": [], + "standardCode": { + "id": "Code_3567", + "extensionAttributes": [], + "code": "C64810", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Nitrite Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_110", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_96", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C Measurement", + "label": "Hemoglobin A1C Measurement", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C" + ], + "reference": "/mdr/bc/biomedicalconcepts/C64849", + "properties": [ + { + "id": "BiomedicalConceptProperty_703", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38804", + "standardCode": { + "id": "Code_46091", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_704", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3125", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_46093", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38805", + "standardCode": { + "id": "Code_46092", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_705", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38807", + "standardCode": { + "id": "Code_46094", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_706", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38808", + "standardCode": { + "id": "Code_46095", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24601", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28719", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Hemoglobin A1C Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_111", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_97", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HBA1CHGBBLD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "label": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "synonyms": [ + "Hemoglobin A1C/Hemoglobin", + "HBA1CHGB" + ], + "reference": "/mdr/bc/biomedicalconcepts/C111207", + "properties": [ + { + "id": "BiomedicalConceptProperty_713", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_38816", + "standardCode": { + "id": "Code_46103", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_714", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3127", + "instanceType": "ResponseCode", + "name": "BLOOD", + "label": "BLOOD", + "isEnabled": true, + "code": { + "id": "Code_46105", + "extensionAttributes": [], + "code": "C12434", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "BLOOD", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38817", + "standardCode": { + "id": "Code_46104", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_715", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_38819", + "standardCode": { + "id": "Code_46106", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_716", + "extensionAttributes": [], + "name": "LBDTC", + "label": "LBDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38820", + "standardCode": { + "id": "Code_46107", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24602", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28720", + "extensionAttributes": [], + "code": "C111207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Hemoglobin A1C to Hemoglobin Ratio Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_112", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_98", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EXPOSCOLL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Exposure as Collected Domain", + "label": "Exposure as Collected Domain", + "synonyms": [ + "EC", + "Exposure as Collected" + ], + "reference": "/mdr/bc/biomedicalconcepts/C117466", + "properties": [ + { + "id": "BiomedicalConceptProperty_720", + "extensionAttributes": [], + "name": "ECTRT", + "label": "ECTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38825", + "standardCode": { + "id": "Code_46112", + "extensionAttributes": [], + "code": "C117473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Name of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_721", + "extensionAttributes": [], + "name": "ECREFID", + "label": "ECREFID", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38826", + "standardCode": { + "id": "Code_46113", + "extensionAttributes": [], + "code": "C117469", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Reference Identifier", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_722", + "extensionAttributes": [], + "name": "ECDOSE", + "label": "ECDOSE", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38827", + "standardCode": { + "id": "Code_46114", + "extensionAttributes": [], + "code": "C117479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_723", + "extensionAttributes": [], + "name": "ECDOSTXT", + "label": "ECDOSTXT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38828", + "standardCode": { + "id": "Code_46115", + "extensionAttributes": [], + "code": "C117480", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_724", + "extensionAttributes": [], + "name": "ECDOSU", + "label": "ECDOSU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38829", + "standardCode": { + "id": "Code_46116", + "extensionAttributes": [], + "code": "C117481", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Units", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_725", + "extensionAttributes": [], + "name": "ECDOSFRM", + "label": "ECDOSFRM", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38830", + "standardCode": { + "id": "Code_46117", + "extensionAttributes": [], + "code": "C117482", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dose Form", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_726", + "extensionAttributes": [], + "name": "ECDOSFRQ", + "label": "ECDOSFRQ", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38831", + "standardCode": { + "id": "Code_46118", + "extensionAttributes": [], + "code": "C117483", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Dosing Frequency per Interval", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_727", + "extensionAttributes": [], + "name": "ECDOSRGM", + "label": "ECDOSRGM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38832", + "standardCode": { + "id": "Code_46119", + "extensionAttributes": [], + "code": "C117485", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Intended Dose Regimen", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_728", + "extensionAttributes": [], + "name": "ECROUTE", + "label": "ECROUTE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38833", + "standardCode": { + "id": "Code_46120", + "extensionAttributes": [], + "code": "C117486", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Route of Administration", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_729", + "extensionAttributes": [], + "name": "ECLOC", + "label": "ECLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38834", + "standardCode": { + "id": "Code_46121", + "extensionAttributes": [], + "code": "C117488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_730", + "extensionAttributes": [], + "name": "ECLAT", + "label": "ECLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38835", + "standardCode": { + "id": "Code_46122", + "extensionAttributes": [], + "code": "C117489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_731", + "extensionAttributes": [], + "name": "ECDIR", + "label": "ECDIR", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38836", + "standardCode": { + "id": "Code_46123", + "extensionAttributes": [], + "code": "C117490", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Directionality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_732", + "extensionAttributes": [], + "name": "ECSTDTC", + "label": "ECSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38837", + "standardCode": { + "id": "Code_46124", + "extensionAttributes": [], + "code": "C117496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected Start Date and Time of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_733", + "extensionAttributes": [], + "name": "ECENDTC", + "label": "ECENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38838", + "standardCode": { + "id": "Code_46125", + "extensionAttributes": [], + "code": "C117497", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Exposure as Collected End Date and Time of Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24603", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28721", + "extensionAttributes": [], + "code": "C117466", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-10-03", + "decode": "Exposure as Collected Domain", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_113", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "id": "BiomedicalConceptProperty_734", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38839", + "standardCode": { + "id": "Code_46126", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_735", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38840", + "standardCode": { + "id": "Code_46127", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_736", + "extensionAttributes": [], + "name": "Test Occurrence", + "label": "Test Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38841", + "standardCode": { + "id": "Code_46128", + "extensionAttributes": [], + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_114", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_99", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYACCEPTABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Acceptability", + "label": "TTS Acceptability Survey - Patch Acceptability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT4", + "properties": [ + { + "id": "BiomedicalConceptProperty_740", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38846", + "standardCode": { + "id": "Code_46133", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_741", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38847", + "standardCode": { + "id": "Code_46134", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_742", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3130", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46136", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38848", + "standardCode": { + "id": "Code_46135", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24605", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28723", + "extensionAttributes": [], + "code": "NEW_LZZT4", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Acceptability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_115", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_100", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYAPPEARANCE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Appearance", + "label": "TTS Acceptability Survey - Patch Appearance", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT1", + "properties": [ + { + "id": "BiomedicalConceptProperty_748", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38856", + "standardCode": { + "id": "Code_46143", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_749", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38857", + "standardCode": { + "id": "Code_46144", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_750", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3132", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46146", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38858", + "standardCode": { + "id": "Code_46145", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24606", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28724", + "extensionAttributes": [], + "code": "NEW_LZZT1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Appearance", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_116", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_101", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYDURABILITY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Durability", + "label": "TTS Acceptability Survey - Patch Durability", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT3", + "properties": [ + { + "id": "BiomedicalConceptProperty_777", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38886", + "standardCode": { + "id": "Code_46173", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_778", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38887", + "standardCode": { + "id": "Code_46174", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_779", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3133", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46176", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38888", + "standardCode": { + "id": "Code_46175", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24607", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28725", + "extensionAttributes": [], + "code": "NEW_LZZT3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Durability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_117", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_102", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PATCHSURVEYSIZE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "TTS Acceptability Survey - Patch Size", + "label": "TTS Acceptability Survey - Patch Size", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT2", + "properties": [ + { + "id": "BiomedicalConceptProperty_780", + "extensionAttributes": [], + "name": "QSORRES", + "label": "QSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38890", + "standardCode": { + "id": "Code_46177", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_781", + "extensionAttributes": [], + "name": "QSDTC", + "label": "QSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38891", + "standardCode": { + "id": "Code_46178", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_782", + "extensionAttributes": [], + "name": "QSEVAL", + "label": "QSEVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3134", + "instanceType": "ResponseCode", + "name": "CAREGIVER", + "label": "CAREGIVER", + "isEnabled": true, + "code": { + "id": "Code_46180", + "extensionAttributes": [], + "code": "C17445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CAREGIVER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38892", + "standardCode": { + "id": "Code_46179", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24608", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28726", + "extensionAttributes": [], + "code": "NEW_LZZT2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey - Patch Size", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_134", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_783", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38894", + "standardCode": { + "id": "Code_46181", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_784", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38895", + "standardCode": { + "id": "Code_46182", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_135", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_103", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/AE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Solicited Adverse Event", + "label": "Solicited Adverse Event", + "synonyms": [ + "Adverse Event" + ], + "reference": "/mdr/bc/biomedicalconcepts/C179175", + "properties": [ + { + "id": "BiomedicalConceptProperty_785", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38896", + "standardCode": { + "id": "Code_46183", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_786", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38897", + "standardCode": { + "id": "Code_46184", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_787", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38898", + "standardCode": { + "id": "Code_46185", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_788", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38899", + "standardCode": { + "id": "Code_46186", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_789", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38900", + "standardCode": { + "id": "Code_46187", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_790", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38901", + "standardCode": { + "id": "Code_46188", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_791", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38902", + "standardCode": { + "id": "Code_46189", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_792", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38903", + "standardCode": { + "id": "Code_46190", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_793", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38904", + "standardCode": { + "id": "Code_46191", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_794", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38905", + "standardCode": { + "id": "Code_46192", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_795", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38906", + "standardCode": { + "id": "Code_46193", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_796", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38907", + "standardCode": { + "id": "Code_46194", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_797", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38908", + "standardCode": { + "id": "Code_46195", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_798", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38909", + "standardCode": { + "id": "Code_46196", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_799", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38910", + "standardCode": { + "id": "Code_46197", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_800", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38911", + "standardCode": { + "id": "Code_46198", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_801", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38912", + "standardCode": { + "id": "Code_46199", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_802", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38913", + "standardCode": { + "id": "Code_46200", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_803", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38914", + "standardCode": { + "id": "Code_46201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_804", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38915", + "standardCode": { + "id": "Code_46202", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_805", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38916", + "standardCode": { + "id": "Code_46203", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_806", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38917", + "standardCode": { + "id": "Code_46204", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_807", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38918", + "standardCode": { + "id": "Code_46205", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_808", + "extensionAttributes": [], + "name": "AEENRF", + "label": "AEENRF", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38919", + "standardCode": { + "id": "Code_46206", + "extensionAttributes": [], + "code": "C82557", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Period", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_809", + "extensionAttributes": [], + "name": "AEENRTPT", + "label": "AEENRTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38920", + "standardCode": { + "id": "Code_46207", + "extensionAttributes": [], + "code": "C82558", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "End Relative to Reference Time Point", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_810", + "extensionAttributes": [], + "name": "AEENTPT", + "label": "AEENTPT", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38921", + "standardCode": { + "id": "Code_46208", + "extensionAttributes": [], + "code": "C82574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Reference End Time Point End", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24610", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28728", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_136", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_104", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTCOMP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Complete", + "label": "Complete", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C25250", + "properties": [], + "code": { + "id": "AliasCode_24611", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28729", + "extensionAttributes": [], + "code": "C25250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Complete [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_137", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_105", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/FAILCONT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Failure To Meet Continuation Criteria", + "label": "Failure To Meet Continuation Criteria", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C139236", + "properties": [], + "code": { + "id": "AliasCode_24612", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28730", + "extensionAttributes": [], + "code": "C139236", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Failure To Meet Continuation Criteria [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_138", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_106", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DEAD", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Dead", + "label": "Dead", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C28554", + "properties": [], + "code": { + "id": "AliasCode_24613", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28731", + "extensionAttributes": [], + "code": "C28554", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Dead [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_139", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_107", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LACKEFFICACY", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lack of Efficacy", + "label": "Lack of Efficacy", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48226", + "properties": [], + "code": { + "id": "AliasCode_24614", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28732", + "extensionAttributes": [], + "code": "C48226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lack of Efficacy [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_140", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_108", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/LTFUP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Lost To Follow-Up", + "label": "Lost To Follow-Up", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48227", + "properties": [], + "code": { + "id": "AliasCode_24615", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28733", + "extensionAttributes": [], + "code": "C48227", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Lost To Follow-Up [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_141", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_109", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_142", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_110", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PHYDECISION", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Physician Decision", + "label": "Physician Decision", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C48250", + "properties": [], + "code": { + "id": "AliasCode_24617", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28735", + "extensionAttributes": [], + "code": "C48250", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Physician Decision [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_143", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_111", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJPREG", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Pregnant Subject", + "label": "Pregnant Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C191656", + "properties": [], + "code": { + "id": "AliasCode_24618", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28736", + "extensionAttributes": [], + "code": "C191656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Pregnant Subject [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_144", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_112", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROGDISEASE", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Progressive Disease", + "label": "Progressive Disease", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C35571", + "properties": [], + "code": { + "id": "AliasCode_24619", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28737", + "extensionAttributes": [], + "code": "C35571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Progressive Disease [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_145", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_113", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/PROTDEV", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Protocol Deviation", + "label": "Protocol Deviation", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C50996", + "properties": [], + "code": { + "id": "AliasCode_1747", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1937", + "extensionAttributes": [], + "code": "C50996", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Protocol Deviation", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_146", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_114", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SITETRANSFER", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Study Site Transfer", + "label": "Study Site Transfer", + "synonyms": [ + "Site Transfer", + "Study Subject Site Transfer" + ], + "reference": "/mdr/bc/biomedicalconcepts/C186208", + "properties": [ + { + "id": "BiomedicalConceptProperty_811", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3135", + "instanceType": "ResponseCode", + "name": "SITE TRANSFER", + "label": "SITE TRANSFER", + "isEnabled": true, + "code": { + "id": "Code_46210", + "extensionAttributes": [], + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "SITE TRANSFER", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38922", + "standardCode": { + "id": "Code_46209", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_812", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38924", + "standardCode": { + "id": "Code_46211", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_813", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38925", + "standardCode": { + "id": "Code_46212", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1753", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1943", + "extensionAttributes": [], + "code": "C186208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Site Transfer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_147", + "extensionAttributes": [], + "name": "Study Terminated By Sponsor", + "label": "Study Terminated By Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49632", + "properties": [], + "code": { + "id": "AliasCode_1758", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1948", + "extensionAttributes": [], + "code": "C49632", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Study Terminated By Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_148", + "extensionAttributes": [], + "name": "Subject Removed at Sponsor Request", + "label": "Subject Removed at Sponsor Request", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C161410", + "properties": [], + "code": { + "id": "AliasCode_29205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_33323", + "extensionAttributes": [], + "code": "C161410", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Subject Removed at Sponsor Request [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_149", + "extensionAttributes": [], + "name": "Trial Screen Failure", + "label": "Trial Screen Failure", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49628", + "properties": [], + "code": { + "id": "AliasCode_1760", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1950", + "extensionAttributes": [], + "code": "C49628", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Screen Failure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_150", + "extensionAttributes": [], + "name": "Trial Site Terminated by Sponsor", + "label": "Trial Site Terminated by Sponsor", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C106576", + "properties": [], + "code": { + "id": "AliasCode_1761", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1951", + "extensionAttributes": [], + "code": "C106576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Trial Site Terminated by Sponsor", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_151", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_115", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SUBJWITHDRAW", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal by Subject", + "label": "Withdrawal by Subject", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C49634", + "properties": [], + "code": { + "id": "AliasCode_1762", + "extensionAttributes": [], + "standardCode": { + "id": "Code_1952", + "extensionAttributes": [], + "code": "C49634", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal by Subject", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_152", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_116", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CONSWDRL", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Withdrawal of Consent From Protocol-Specified Activity", + "label": "Withdrawal of Consent From Protocol-Specified Activity", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C170610", + "properties": [ + { + "id": "BiomedicalConceptProperty_823", + "extensionAttributes": [], + "name": "DSDECOD", + "label": "DSDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3138", + "instanceType": "ResponseCode", + "name": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "label": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "isEnabled": true, + "code": { + "id": "Code_46225", + "extensionAttributes": [], + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "WITHDRAWAL OF CONSENT FROM PROTOCOL-SPECIFIED ACTIVITY", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38937", + "standardCode": { + "id": "Code_46224", + "extensionAttributes": [], + "code": "C82977", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Dictionary-derived Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_824", + "extensionAttributes": [], + "name": "DSTERM", + "label": "DSTERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38939", + "standardCode": { + "id": "Code_46226", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_825", + "extensionAttributes": [], + "name": "DSSTDTC", + "label": "DSSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38940", + "standardCode": { + "id": "Code_46227", + "extensionAttributes": [], + "code": "C82517", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Start Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_38009", + "extensionAttributes": [], + "standardCode": { + "id": "Code_45296", + "extensionAttributes": [], + "code": "C170610", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2023-12-12", + "decode": "Withdrawal of Consent From Protocol-Specified Activity", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_153", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_117", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_832", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38948", + "standardCode": { + "id": "Code_46235", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_833", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3140", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46237", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38949", + "standardCode": { + "id": "Code_46236", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_834", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38951", + "standardCode": { + "id": "Code_46238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_835", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38952", + "standardCode": { + "id": "Code_46239", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_836", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38953", + "standardCode": { + "id": "Code_46240", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_837", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38954", + "standardCode": { + "id": "Code_46241", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_154", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_118", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_862", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_38983", + "standardCode": { + "id": "Code_46270", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_863", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3145", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46272", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_38984", + "standardCode": { + "id": "Code_46271", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_864", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38986", + "standardCode": { + "id": "Code_46273", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_865", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38987", + "standardCode": { + "id": "Code_46274", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_866", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_38988", + "standardCode": { + "id": "Code_46275", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_867", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_38989", + "standardCode": { + "id": "Code_46276", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_155", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_119", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_880", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39002", + "standardCode": { + "id": "Code_46289", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_881", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3146", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_46291", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39003", + "standardCode": { + "id": "Code_46290", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_882", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39005", + "standardCode": { + "id": "Code_46292", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_883", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39006", + "standardCode": { + "id": "Code_46293", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_884", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39007", + "standardCode": { + "id": "Code_46294", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_885", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39008", + "standardCode": { + "id": "Code_46295", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_156", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_120", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SYSBP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": [ + "SYSBP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25298", + "properties": [ + { + "id": "BiomedicalConceptProperty_886", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39009", + "standardCode": { + "id": "Code_46296", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_887", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3147", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46298", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39010", + "standardCode": { + "id": "Code_46297", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_888", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39012", + "standardCode": { + "id": "Code_46299", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_889", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39013", + "standardCode": { + "id": "Code_46300", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_890", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39014", + "standardCode": { + "id": "Code_46301", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_891", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39015", + "standardCode": { + "id": "Code_46302", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1834", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2024", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Systolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_157", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_121", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/DIABP", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": [ + "DIABP" + ], + "reference": "/mdr/bc/biomedicalconcepts/C25299", + "properties": [ + { + "id": "BiomedicalConceptProperty_892", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39016", + "standardCode": { + "id": "Code_46303", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_893", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3148", + "instanceType": "ResponseCode", + "name": "mmHg", + "label": "mmHg", + "isEnabled": true, + "code": { + "id": "Code_46305", + "extensionAttributes": [], + "code": "C49670", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "mmHg", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39017", + "standardCode": { + "id": "Code_46304", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_894", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39019", + "standardCode": { + "id": "Code_46306", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_895", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39020", + "standardCode": { + "id": "Code_46307", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_896", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39021", + "standardCode": { + "id": "Code_46308", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_897", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39022", + "standardCode": { + "id": "Code_46309", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_26219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_30337", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Diastolic Blood Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_158", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_122", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/HR", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": [ + "HR" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49677", + "properties": [ + { + "id": "BiomedicalConceptProperty_898", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39023", + "standardCode": { + "id": "Code_46310", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_899", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3149", + "instanceType": "ResponseCode", + "name": "beats/min", + "label": "beats/min", + "isEnabled": true, + "code": { + "id": "Code_46312", + "extensionAttributes": [], + "code": "C49673", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "beats/min", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39024", + "standardCode": { + "id": "Code_46311", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_900", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39026", + "standardCode": { + "id": "Code_46313", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_901", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39027", + "standardCode": { + "id": "Code_46314", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_902", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39028", + "standardCode": { + "id": "Code_46315", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_903", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39029", + "standardCode": { + "id": "Code_46316", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_1833", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2023", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-12-16", + "decode": "Heart Rate", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_159", + "extensionAttributes": [], + "name": "Isometric Muscle Strength", + "label": "Isometric Muscle Strength", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C138967", + "properties": [], + "code": { + "id": "AliasCode_2312", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2502", + "extensionAttributes": [], + "code": "C138967", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Isometric Muscle Strength", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_160", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_129", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/SMMASS", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Skeletal Muscle Mass Measurement", + "label": "Skeletal Muscle Mass Measurement", + "synonyms": [ + "SMMASS", + "Skeletal Muscle Mass" + ], + "reference": "/mdr/bc/biomedicalconcepts/C178017", + "properties": [ + { + "id": "BiomedicalConceptProperty_920", + "extensionAttributes": [], + "name": "MKORRES", + "label": "MKORRES", + "isRequired": false, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_39050", + "standardCode": { + "id": "Code_46337", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_921", + "extensionAttributes": [], + "name": "MKORRESU", + "label": "MKORRESU", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39051", + "standardCode": { + "id": "Code_46338", + "extensionAttributes": [], + "code": "C42579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Unit of Mass", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_922", + "extensionAttributes": [], + "name": "MKLOC", + "label": "MKLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39052", + "standardCode": { + "id": "Code_46339", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_923", + "extensionAttributes": [], + "name": "MKLAT", + "label": "MKLAT", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39053", + "standardCode": { + "id": "Code_46340", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_924", + "extensionAttributes": [], + "name": "MKMETHOD", + "label": "MKMETHOD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39054", + "standardCode": { + "id": "Code_46341", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_925", + "extensionAttributes": [], + "name": "MKDTC", + "label": "MKDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39055", + "standardCode": { + "id": "Code_46342", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2313", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2503", + "extensionAttributes": [], + "code": "C178017", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Skeletal Muscle Mass Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_161", + "extensionAttributes": [], + "name": "Muscle Endurance Measurement", + "label": "Muscle Endurance Measurement", + "synonyms": [ + "ENDURM", + "Muscle Endurance" + ], + "reference": "/mdr/bc/biomedicalconcepts/C181501", + "properties": [ + { + "id": "BiomedicalConceptProperty_933", + "extensionAttributes": [], + "name": "Observation Result", + "label": "Observation Result", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39064", + "standardCode": { + "id": "Code_46351", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Observation Result", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_934", + "extensionAttributes": [], + "name": "Unit of Time", + "label": "Unit of Time", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39065", + "standardCode": { + "id": "Code_46352", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_935", + "extensionAttributes": [], + "name": "Anatomic Site", + "label": "Anatomic Site", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39066", + "standardCode": { + "id": "Code_46353", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_936", + "extensionAttributes": [], + "name": "Laterality", + "label": "Laterality", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39067", + "standardCode": { + "id": "Code_46354", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Laterality", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_937", + "extensionAttributes": [], + "name": "Test Method", + "label": "Test Method", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39068", + "standardCode": { + "id": "Code_46355", + "extensionAttributes": [], + "code": "C82535", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Test Method", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_938", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39069", + "standardCode": { + "id": "Code_46356", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24620", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28738", + "extensionAttributes": [], + "code": "C181501", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Muscle Endurance Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_162", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_139", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "id": "BiomedicalConceptProperty_949", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3155", + "instanceType": "ResponseCode", + "name": "EGCTMON", + "label": "EGCTMON", + "isEnabled": true, + "code": { + "id": "Code_46368", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39080", + "standardCode": { + "id": "Code_46367", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_950", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3156", + "instanceType": "ResponseCode", + "name": "ECG Continuous Monitoring", + "label": "ECG Continuous Monitoring", + "isEnabled": true, + "code": { + "id": "Code_46370", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39082", + "standardCode": { + "id": "Code_46369", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_951", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_39084", + "standardCode": { + "id": "Code_46371", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_952", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39085", + "standardCode": { + "id": "Code_46372", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_953", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39086", + "standardCode": { + "id": "Code_46373", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_954", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39087", + "standardCode": { + "id": "Code_46374", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_164", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/NEW_LZZT", + "properties": [ + { + "id": "BiomedicalConceptProperty_955", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39088", + "standardCode": { + "id": "Code_46375", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_956", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39089", + "standardCode": { + "id": "Code_46376", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_957", + "extensionAttributes": [], + "name": "Test Occurrence", + "label": "Test Occurrence", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39090", + "standardCode": { + "id": "Code_46377", + "extensionAttributes": [], + "code": "C82525", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "Test Occurrence", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24604", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28722", + "extensionAttributes": [], + "code": "NEW_LZZT", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-23", + "decode": "TTS Acceptability Survey", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_165", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_141", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/MRIBRAIN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Magnetic Resonance Imaging", + "label": "Magnetic Resonance Imaging", + "synonyms": [ + "Magnetic Resonance", + "MRI", + "MRI Scan", + "NMR", + "NMR Imaging" + ], + "reference": "/mdr/bc/biomedicalconcepts/C16809", + "properties": [ + { + "id": "BiomedicalConceptProperty_974", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39107", + "standardCode": { + "id": "Code_46394", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_975", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3157", + "instanceType": "ResponseCode", + "name": "MRI", + "label": "MRI", + "isEnabled": true, + "code": { + "id": "Code_46396", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39108", + "standardCode": { + "id": "Code_46395", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_976", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39110", + "standardCode": { + "id": "Code_46397", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_977", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39111", + "standardCode": { + "id": "Code_46398", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_978", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3158", + "instanceType": "ResponseCode", + "name": "BRAIN", + "label": "BRAIN", + "isEnabled": true, + "code": { + "id": "Code_46400", + "extensionAttributes": [], + "code": "C12439", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "BRAIN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39112", + "standardCode": { + "id": "Code_46399", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_979", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39114", + "standardCode": { + "id": "Code_46401", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_980", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39115", + "standardCode": { + "id": "Code_46402", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_15783", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16598", + "extensionAttributes": [], + "code": "C16809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "MRI", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_166", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_142", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/CTSCAN", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Computed Tomography", + "label": "Computed Tomography", + "synonyms": [ + "CAT Scan", + "Computed Axial Tomography", + "Computed Tomography", + "Computerized Tomography", + "CT" + ], + "reference": "/mdr/bc/biomedicalconcepts/C17204", + "properties": [ + { + "id": "BiomedicalConceptProperty_997", + "extensionAttributes": [], + "name": "PRTRT", + "label": "PRTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39132", + "standardCode": { + "id": "Code_46419", + "extensionAttributes": [], + "code": "C117511", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Reported Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_998", + "extensionAttributes": [], + "name": "PRDECOD", + "label": "PRDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_3159", + "instanceType": "ResponseCode", + "name": "CT SCAN", + "label": "CT SCAN", + "isEnabled": true, + "code": { + "id": "Code_46421", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39133", + "standardCode": { + "id": "Code_46420", + "extensionAttributes": [], + "code": "C117512", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Standardized Name of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_999", + "extensionAttributes": [], + "name": "PRPRESP", + "label": "PRPRESP", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39135", + "standardCode": { + "id": "Code_46422", + "extensionAttributes": [], + "code": "C171000", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Prespecified Event or Intervention Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1000", + "extensionAttributes": [], + "name": "PROCCUR", + "label": "PROCCUR", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39136", + "standardCode": { + "id": "Code_46423", + "extensionAttributes": [], + "code": "C127786", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Occurrence Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1001", + "extensionAttributes": [], + "name": "PRLOC", + "label": "PRLOC", + "isRequired": false, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_39137", + "standardCode": { + "id": "Code_46424", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1002", + "extensionAttributes": [], + "name": "PRSTDTC", + "label": "PRSTDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39138", + "standardCode": { + "id": "Code_46425", + "extensionAttributes": [], + "code": "C117529", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "Start Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1003", + "extensionAttributes": [], + "name": "PRENDTC", + "label": "PRENDTC", + "isRequired": false, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39139", + "standardCode": { + "id": "Code_46426", + "extensionAttributes": [], + "code": "C117530", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "End Date and Time of Procedure", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_28017", + "extensionAttributes": [], + "standardCode": { + "id": "Code_32135", + "extensionAttributes": [], + "code": "C17204", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-05-26", + "decode": "CT SCAN", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_168", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_169", + "extensionAttributes": [], + "name": "Vital Signs Measurement", + "label": "Vital Signs Measurement", + "synonyms": [ + "Vital Signs", + "VS" + ], + "reference": "/mdr/bc/biomedicalconcepts/C49672", + "properties": [], + "code": { + "id": "AliasCode_24621", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28739", + "extensionAttributes": [], + "code": "C49672", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-12-16", + "decode": "Vital Signs Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_170", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_143", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/ADVEVENT", + "instanceType": "ExtensionAttribute" + } + ], + "name": "Adverse Event [RETIRED]", + "label": "Adverse Event [RETIRED]", + "synonyms": [], + "reference": "/mdr/bc/biomedicalconcepts/C41331", + "properties": [], + "code": { + "id": "AliasCode_24616", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28734", + "extensionAttributes": [], + "code": "C41331", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2026-03-31", + "decode": "Adverse Event [RETIRED]", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_171", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "synonyms": [ + "AEYN" + ], + "reference": "/mdr/bc/biomedicalconcepts/C83347", + "properties": [ + { + "id": "BiomedicalConceptProperty_1012", + "extensionAttributes": [], + "name": "Adverse Event Yes No Indicator", + "label": "Adverse Event Yes No Indicator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39148", + "standardCode": { + "id": "Code_46435", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1013", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39149", + "standardCode": { + "id": "Code_46436", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24609", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28727", + "extensionAttributes": [], + "code": "C83347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Adverse Event Yes No Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_172", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recall Average Score", + "label": "CDISC ADAS-Cog - Word Recall Average Score", + "synonyms": [ + "ADCRL", + "Word Recall", + "CDISC ADAS-Cog - Word Recall Average Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100177", + "properties": [ + { + "id": "BiomedicalConceptProperty_1022", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39158", + "standardCode": { + "id": "Code_46445", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1023", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39159", + "standardCode": { + "id": "Code_46446", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1024", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39160", + "standardCode": { + "id": "Code_46447", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1025", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39161", + "standardCode": { + "id": "Code_46448", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1026", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39162", + "standardCode": { + "id": "Code_46449", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1027", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39163", + "standardCode": { + "id": "Code_46450", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1028", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39164", + "standardCode": { + "id": "Code_46451", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1029", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39165", + "standardCode": { + "id": "Code_46452", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24622", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28740", + "extensionAttributes": [], + "code": "C100177", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recall Average Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_173", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "label": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "synonyms": [ + "ADCOF", + "Naming Objects and Fingers", + "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100191", + "properties": [ + { + "id": "BiomedicalConceptProperty_1030", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39166", + "standardCode": { + "id": "Code_46453", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1031", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39167", + "standardCode": { + "id": "Code_46454", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1032", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39168", + "standardCode": { + "id": "Code_46455", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1033", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39169", + "standardCode": { + "id": "Code_46456", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1034", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39170", + "standardCode": { + "id": "Code_46457", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1035", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39171", + "standardCode": { + "id": "Code_46458", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1036", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39172", + "standardCode": { + "id": "Code_46459", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1037", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39173", + "standardCode": { + "id": "Code_46460", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31360", + "extensionAttributes": [], + "code": "C100191", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Naming Objects and Fingers Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_174", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Commands Summary Score", + "label": "CDISC ADAS-Cog - Commands Summary Score", + "synonyms": [ + "ADCCMD", + "Commands", + "CDISC ADAS-Cog - Commands Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100209", + "properties": [ + { + "id": "BiomedicalConceptProperty_1046", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39182", + "standardCode": { + "id": "Code_46469", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1047", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39183", + "standardCode": { + "id": "Code_46470", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1048", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39184", + "standardCode": { + "id": "Code_46471", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1049", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39185", + "standardCode": { + "id": "Code_46472", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1050", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39186", + "standardCode": { + "id": "Code_46473", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1051", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39187", + "standardCode": { + "id": "Code_46474", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1052", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39188", + "standardCode": { + "id": "Code_46475", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1053", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39189", + "standardCode": { + "id": "Code_46476", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24623", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28741", + "extensionAttributes": [], + "code": "C100209", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Commands Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_175", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "label": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "synonyms": [ + "ADCDRL", + "Delayed Word Recall", + "CDISC ADAS-Cog - Delayed Word Recall Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100215", + "properties": [ + { + "id": "BiomedicalConceptProperty_1062", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39198", + "standardCode": { + "id": "Code_46485", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1063", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39199", + "standardCode": { + "id": "Code_46486", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1064", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39200", + "standardCode": { + "id": "Code_46487", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1065", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39201", + "standardCode": { + "id": "Code_46488", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1066", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39202", + "standardCode": { + "id": "Code_46489", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1067", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39203", + "standardCode": { + "id": "Code_46490", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1068", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39204", + "standardCode": { + "id": "Code_46491", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1069", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39205", + "standardCode": { + "id": "Code_46492", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31361", + "extensionAttributes": [], + "code": "C100215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Delayed Word Recall Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_176", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "label": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "synonyms": [ + "ADCCP", + "Constructional Praxis", + "CDISC ADAS-Cog - Constructional Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100226", + "properties": [ + { + "id": "BiomedicalConceptProperty_1078", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39214", + "standardCode": { + "id": "Code_46501", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1079", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39215", + "standardCode": { + "id": "Code_46502", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1080", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39216", + "standardCode": { + "id": "Code_46503", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1081", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39217", + "standardCode": { + "id": "Code_46504", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1082", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39218", + "standardCode": { + "id": "Code_46505", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1083", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39219", + "standardCode": { + "id": "Code_46506", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1084", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39220", + "standardCode": { + "id": "Code_46507", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1085", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39221", + "standardCode": { + "id": "Code_46508", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31362", + "extensionAttributes": [], + "code": "C100226", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Constructional Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_177", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "label": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "synonyms": [ + "ADCIP", + "Ideational Praxis", + "CDISC ADAS-Cog - Ideational Praxis Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100232", + "properties": [ + { + "id": "BiomedicalConceptProperty_1094", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39230", + "standardCode": { + "id": "Code_46517", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1095", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39231", + "standardCode": { + "id": "Code_46518", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1096", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39232", + "standardCode": { + "id": "Code_46519", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1097", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39233", + "standardCode": { + "id": "Code_46520", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1098", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39234", + "standardCode": { + "id": "Code_46521", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1099", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39235", + "standardCode": { + "id": "Code_46522", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1100", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39236", + "standardCode": { + "id": "Code_46523", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1101", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39237", + "standardCode": { + "id": "Code_46524", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24624", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28742", + "extensionAttributes": [], + "code": "C100232", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Ideational Praxis Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_178", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Orientation Summary Score", + "label": "CDISC ADAS-Cog - Orientation Summary Score", + "synonyms": [ + "ADCOR", + "Orientation", + "CDISC ADAS-Cog - Orientation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100238", + "properties": [ + { + "id": "BiomedicalConceptProperty_1110", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39246", + "standardCode": { + "id": "Code_46533", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1111", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39247", + "standardCode": { + "id": "Code_46534", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1112", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39248", + "standardCode": { + "id": "Code_46535", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1113", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39249", + "standardCode": { + "id": "Code_46536", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1114", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39250", + "standardCode": { + "id": "Code_46537", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1115", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39251", + "standardCode": { + "id": "Code_46538", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1116", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39252", + "standardCode": { + "id": "Code_46539", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1117", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39253", + "standardCode": { + "id": "Code_46540", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_27245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_31363", + "extensionAttributes": [], + "code": "C100238", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Orientation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_179", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Recognition Summary Score", + "label": "CDISC ADAS-Cog - Word Recognition Summary Score", + "synonyms": [ + "ADCRG", + "Word Recognition", + "CDISC ADAS-Cog - Word Recognition Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100247", + "properties": [ + { + "id": "BiomedicalConceptProperty_1126", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39262", + "standardCode": { + "id": "Code_46549", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1127", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39263", + "standardCode": { + "id": "Code_46550", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1128", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39264", + "standardCode": { + "id": "Code_46551", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1129", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39265", + "standardCode": { + "id": "Code_46552", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1130", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39266", + "standardCode": { + "id": "Code_46553", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39267", + "standardCode": { + "id": "Code_46554", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1132", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "decimal", + "responseCodes": [], + "code": { + "id": "AliasCode_39268", + "standardCode": { + "id": "Code_46555", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1133", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39269", + "standardCode": { + "id": "Code_46556", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24625", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28743", + "extensionAttributes": [], + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_180", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Remembering Test Instructions", + "label": "CDISC ADAS-Cog - Remembering Test Instructions", + "synonyms": [ + "ADCRI", + "Remembering Test Instructions", + "CDISC ADAS-Cog - Remembering Test Instructions" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100275", + "properties": [ + { + "id": "BiomedicalConceptProperty_1142", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39278", + "standardCode": { + "id": "Code_46565", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1143", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39279", + "standardCode": { + "id": "Code_46566", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1144", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39280", + "standardCode": { + "id": "Code_46567", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1145", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39281", + "standardCode": { + "id": "Code_46568", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1146", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39282", + "standardCode": { + "id": "Code_46569", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1147", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39283", + "standardCode": { + "id": "Code_46570", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1148", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39284", + "standardCode": { + "id": "Code_46571", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1149", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39285", + "standardCode": { + "id": "Code_46572", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24626", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28744", + "extensionAttributes": [], + "code": "C100275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Remembering Test Instructions", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_181", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Spoken Language Ability", + "label": "CDISC ADAS-Cog - Spoken Language Ability", + "synonyms": [ + "ADCSL", + "Spoken Language Ability", + "CDISC ADAS-Cog - Spoken Language Ability" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100276", + "properties": [ + { + "id": "BiomedicalConceptProperty_1167", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39303", + "standardCode": { + "id": "Code_46590", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1168", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39304", + "standardCode": { + "id": "Code_46591", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1169", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39305", + "standardCode": { + "id": "Code_46592", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1170", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39306", + "standardCode": { + "id": "Code_46593", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1171", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39307", + "standardCode": { + "id": "Code_46594", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1172", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39308", + "standardCode": { + "id": "Code_46595", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1173", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39309", + "standardCode": { + "id": "Code_46596", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1174", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39310", + "standardCode": { + "id": "Code_46597", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24627", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28745", + "extensionAttributes": [], + "code": "C100276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Spoken Language Ability", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_182", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "label": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "synonyms": [ + "ADCDIF", + "Word Finding Difficulty in Spont Speech", + "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100277", + "properties": [ + { + "id": "BiomedicalConceptProperty_1181", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39319", + "standardCode": { + "id": "Code_46606", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1182", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39320", + "standardCode": { + "id": "Code_46607", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1183", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39321", + "standardCode": { + "id": "Code_46608", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1184", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39322", + "standardCode": { + "id": "Code_46609", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1185", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39323", + "standardCode": { + "id": "Code_46610", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1186", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39324", + "standardCode": { + "id": "Code_46611", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1187", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39325", + "standardCode": { + "id": "Code_46612", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1188", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39326", + "standardCode": { + "id": "Code_46613", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24628", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28746", + "extensionAttributes": [], + "code": "C100277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Word Difficulty in Spontaneous Speech", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_183", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Comprehension", + "label": "CDISC ADAS-Cog - Comprehension", + "synonyms": [ + "ADCCMP", + "Comprehension", + "CDISC ADAS-Cog - Comprehension" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100278", + "properties": [ + { + "id": "BiomedicalConceptProperty_1189", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39327", + "standardCode": { + "id": "Code_46614", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1190", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39328", + "standardCode": { + "id": "Code_46615", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1191", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39329", + "standardCode": { + "id": "Code_46616", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1192", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39330", + "standardCode": { + "id": "Code_46617", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1193", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39331", + "standardCode": { + "id": "Code_46618", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1194", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39332", + "standardCode": { + "id": "Code_46619", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1195", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39333", + "standardCode": { + "id": "Code_46620", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1196", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39334", + "standardCode": { + "id": "Code_46621", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24629", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28747", + "extensionAttributes": [], + "code": "C100278", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Comprehension", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_184", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Concentration/Distractibility", + "label": "CDISC ADAS-Cog - Concentration/Distractibility", + "synonyms": [ + "ADCCON", + "Concentration/Distractibility", + "CDISC ADAS-Cog - Concentration/Distractibility" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100279", + "properties": [ + { + "id": "BiomedicalConceptProperty_1197", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39335", + "standardCode": { + "id": "Code_46622", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1198", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39336", + "standardCode": { + "id": "Code_46623", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1199", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39337", + "standardCode": { + "id": "Code_46624", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1200", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39338", + "standardCode": { + "id": "Code_46625", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1201", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39339", + "standardCode": { + "id": "Code_46626", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1202", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39340", + "standardCode": { + "id": "Code_46627", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1203", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39341", + "standardCode": { + "id": "Code_46628", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1204", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39342", + "standardCode": { + "id": "Code_46629", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24630", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28748", + "extensionAttributes": [], + "code": "C100279", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Concentration/Distractibility", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_185", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "label": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "synonyms": [ + "ADCNC", + "Number Cancellation", + "CDISC ADAS-Cog - Number Cancellation Summary Score" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100280", + "properties": [ + { + "id": "BiomedicalConceptProperty_1205", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39343", + "standardCode": { + "id": "Code_46630", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1206", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39344", + "standardCode": { + "id": "Code_46631", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1207", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39345", + "standardCode": { + "id": "Code_46632", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1208", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39346", + "standardCode": { + "id": "Code_46633", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1209", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39347", + "standardCode": { + "id": "Code_46634", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1210", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39348", + "standardCode": { + "id": "Code_46635", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1211", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39349", + "standardCode": { + "id": "Code_46636", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1212", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39350", + "standardCode": { + "id": "Code_46637", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24631", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28749", + "extensionAttributes": [], + "code": "C100280", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Number Cancellation Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_186", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "label": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "synonyms": [ + "ADCMZ01", + "Executive Function Maze: Errors", + "CDISC ADAS-Cog - Executive Function Maze: Errors" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100285", + "properties": [ + { + "id": "BiomedicalConceptProperty_1213", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39351", + "standardCode": { + "id": "Code_46638", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1214", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39352", + "standardCode": { + "id": "Code_46639", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1215", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39353", + "standardCode": { + "id": "Code_46640", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1216", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39354", + "standardCode": { + "id": "Code_46641", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1217", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39355", + "standardCode": { + "id": "Code_46642", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1218", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39356", + "standardCode": { + "id": "Code_46643", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1219", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39357", + "standardCode": { + "id": "Code_46644", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1220", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39358", + "standardCode": { + "id": "Code_46645", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24632", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28750", + "extensionAttributes": [], + "code": "C100285", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Errors", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_187", + "extensionAttributes": [], + "name": "CDISC ADAS-Cog - Executive Function Maze: Time", + "label": "CDISC ADAS-Cog - Executive Function Maze: Time", + "synonyms": [ + "ADCMZ02", + "Executive Function Maze: Time", + "CDISC ADAS-Cog - Executive Function Maze: Time" + ], + "reference": "/mdr/bc/biomedicalconcepts/C100286", + "properties": [ + { + "id": "BiomedicalConceptProperty_1221", + "extensionAttributes": [], + "name": "Ordinal Position", + "label": "Ordinal Position", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39359", + "standardCode": { + "id": "Code_46646", + "extensionAttributes": [], + "code": "C46126", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Ordinal Position", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1222", + "extensionAttributes": [], + "name": "Clinical or Research Assessment Answer", + "label": "Clinical or Research Assessment Answer", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_39360", + "standardCode": { + "id": "Code_46647", + "extensionAttributes": [], + "code": "C91106", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Clinical or Research Assessment Answer", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1223", + "extensionAttributes": [], + "name": "Unit of Time", + "label": "Unit of Time", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39361", + "standardCode": { + "id": "Code_46648", + "extensionAttributes": [], + "code": "C42574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Unit of Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1224", + "extensionAttributes": [], + "name": "Category", + "label": "Category", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39362", + "standardCode": { + "id": "Code_46649", + "extensionAttributes": [], + "code": "C25372", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Category", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1225", + "extensionAttributes": [], + "name": "Subcategory", + "label": "Subcategory", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39363", + "standardCode": { + "id": "Code_46650", + "extensionAttributes": [], + "code": "C25692", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Subcategory", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1226", + "extensionAttributes": [], + "name": "Completion Status", + "label": "Completion Status", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39364", + "standardCode": { + "id": "Code_46651", + "extensionAttributes": [], + "code": "C41202", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Completion Status", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1227", + "extensionAttributes": [], + "name": "Not-Done Reason", + "label": "Not-Done Reason", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39365", + "standardCode": { + "id": "Code_46652", + "extensionAttributes": [], + "code": "C82556", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Not-Done Reason", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1228", + "extensionAttributes": [], + "name": "Evaluator", + "label": "Evaluator", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39366", + "standardCode": { + "id": "Code_46653", + "extensionAttributes": [], + "code": "C51824", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Evaluator", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1229", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_39367", + "standardCode": { + "id": "Code_46654", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_24633", + "extensionAttributes": [], + "standardCode": { + "id": "Code_28751", + "extensionAttributes": [], + "code": "C100286", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-11-18", + "decode": "CDISC ADAS-Cog - Executive Function Maze: Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_163", + "extensionAttributes": [ + { + "id": "ExtensionAttribute_140", + "url": "http://www.cdisc.org/usdm/extensions/specializations/sdtm", + "valueString": "/mdr/specializations/sdtm/datasetspecializations/EGCTMON", + "instanceType": "ExtensionAttribute" + } + ], + "name": "ECG Continuous Monitoring Indicator", + "label": "ECG Continuous Monitoring Indicator", + "synonyms": [ + "ECG Continuous Monitoring", + "EGCTMON" + ], + "reference": "/mdr/bc/biomedicalconcepts/C119561", + "properties": [ + { + "id": "BiomedicalConceptProperty_1230", + "extensionAttributes": [], + "name": "TSPARMCD", + "label": "TSPARMCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3160", + "instanceType": "ResponseCode", + "name": "EGCTMON", + "label": "EGCTMON", + "isEnabled": true, + "code": { + "id": "Code_46656", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "EGCTMON", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39368", + "standardCode": { + "id": "Code_46655", + "extensionAttributes": [], + "code": "C83445", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1231", + "extensionAttributes": [], + "name": "TSPARM", + "label": "TSPARM", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_3161", + "instanceType": "ResponseCode", + "name": "ECG Continuous Monitoring", + "label": "ECG Continuous Monitoring", + "isEnabled": true, + "code": { + "id": "Code_46658", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring", + "instanceType": "Code" + } + } + ], + "code": { + "id": "AliasCode_39370", + "standardCode": { + "id": "Code_46657", + "extensionAttributes": [], + "code": "C49691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1232", + "extensionAttributes": [], + "name": "TSVAL", + "label": "TSVAL", + "isRequired": false, + "isEnabled": true, + "datatype": "boolean", + "responseCodes": [], + "code": { + "id": "AliasCode_39372", + "standardCode": { + "id": "Code_46659", + "extensionAttributes": [], + "code": "C83447", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1233", + "extensionAttributes": [], + "name": "TSVALCD", + "label": "TSVALCD", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39373", + "standardCode": { + "id": "Code_46660", + "extensionAttributes": [], + "code": "C117458", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Value Code", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1234", + "extensionAttributes": [], + "name": "TSVCDREF", + "label": "TSVCDREF", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39374", + "standardCode": { + "id": "Code_46661", + "extensionAttributes": [], + "code": "C117460", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Name of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_1235", + "extensionAttributes": [], + "name": "TSVCDVER", + "label": "TSVCDVER", + "isRequired": false, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_39375", + "standardCode": { + "id": "Code_46662", + "extensionAttributes": [], + "code": "C117461", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "Trial Summary Parameter Version of the Reference Terminology", + "instanceType": "Code" + }, + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_2311", + "extensionAttributes": [], + "standardCode": { + "id": "Code_2501", + "extensionAttributes": [], + "code": "C119561", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-07-01", + "decode": "ECG Continuous Monitoring Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_9", + "extensionAttributes": [], + "name": "MHIS-NACC / MHIS01", + "label": "Modified Hachinski Ischemic Scale (C112523)", + "description": "Modified Hachinski Ischemic Scale-NACC Version Questionnaire", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112523", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_10", + "extensionAttributes": [], + "name": "MHIS0101", + "label": "Abrupt Onset (C112618)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Abrupt onset (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112618", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_11", + "extensionAttributes": [], + "name": "MHIS0102", + "label": "Stepwise Deterioration (C112619)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Stepwise deterioration (re: cognitive status).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112619", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_12", + "extensionAttributes": [], + "name": "MHIS0103", + "label": "Emotional Incontinence (C112620)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Emotional incontinence.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112620", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_13", + "extensionAttributes": [], + "name": "MHIS0104", + "label": "History or Presence of Hypertension (C112621)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History or presence of hypertension.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112621", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_14", + "extensionAttributes": [], + "name": "MHIS0105", + "label": "History of Stroke (C112622)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - History of stroke.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112622", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_15", + "extensionAttributes": [], + "name": "MHIS0106", + "label": "Focal Neurological Symptoms (C112623)", + "description": "MHIS-NACC - Focal Neurological Symptoms", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_16", + "extensionAttributes": [], + "name": "MHIS0107", + "label": "Focal Neurological Signs (C112624)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Focal neurological signs.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_17", + "extensionAttributes": [], + "name": "MHIS0108", + "label": "Somatic Complaints (C112813)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Somatic complaints.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112813", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_18", + "extensionAttributes": [], + "name": "MHIS0109", + "label": "Total Score (C112625)", + "description": "Modified Hachinski Ischemic Scale-NACC Version - Sum all circled answers for a total score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_19", + "extensionAttributes": [], + "name": "APOE Gene", + "label": "APOE Gene (C84468)", + "description": "This gene is involved in lipid transport and metabolism.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C84468", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_20", + "extensionAttributes": [], + "name": "Mini-Mental Status Exam", + "label": "Mini-Mental Status Exam (C74982)", + "description": "Mini-Mental State Examination (MMSE) (MMSE Copyright 1975, 1998, 2001 by MiniMental, LLC All rights reserved. Published 2001 by Psychological Assessment Resources, Inc. May not be reproduced in whole or in part in any form or by any means without written permission of Psychological Assessment Resources, Inc.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C74982", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_21", + "extensionAttributes": [], + "name": "MMSE - Question 1", + "label": "MMSE - Question 1 (C100542)", + "description": "The Mini-Mental State Examination (MMSE) Question 1.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100542", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_22", + "extensionAttributes": [], + "name": "MMSE - Question 2", + "label": "MMSE - Question 2 (C100548)", + "description": "The Mini-Mental State Examination (MMSE) Question 2.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100548", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_23", + "extensionAttributes": [], + "name": "MMSE - Question 3", + "label": "MMSE - Question 3 (C100554)", + "description": "The Mini-Mental State Examination (MMSE) Question 3.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100554", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_24", + "extensionAttributes": [], + "name": "MMSE - Question 4", + "label": "MMSE - Question 4 (C100558)", + "description": "The Mini-Mental State Examination (MMSE) Question 4.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100558", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_25", + "extensionAttributes": [], + "name": "MMSE - Question 6", + "label": "MMSE - Question 6 (C100575)", + "description": "The Mini-Mental State Examination (MMSE) Question 6.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100575", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_26", + "extensionAttributes": [], + "name": "MMSE Functional Test Question", + "label": "MMSE Functional Test Question (C100118)", + "description": "A question associated with the MMSE functional test.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C100118", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_27", + "extensionAttributes": [], + "name": "ADCS-CGIC", + "label": "ADCS-CGIC Questionnaire Question (C103490)", + "description": "A question associated with the ADCS-CGIC questionnaire.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103490", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_28", + "extensionAttributes": [], + "name": "DAD", + "label": "Disability Assessment for Dementia Questionnaire (C105165)", + "description": "Disability Assessment for Dementia (DAD) (copyright 1994 by L. Gauthier I. Gelinas. All rights reserved.).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C105165", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_29", + "extensionAttributes": [], + "name": "NPI - NPI Total Distress Score", + "label": "NPI - NPI Total Distress Score (C112482)", + "description": "Neuropsychiatric Inventory - Sub-total of distress score.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112482", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_30", + "extensionAttributes": [], + "name": "NPI - Anxiety Severity", + "label": "NPI - Anxiety Severity (C103615)", + "description": "Neuropsychiatric Inventory - Severity of the anxiety.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103615", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_31", + "extensionAttributes": [], + "name": "NPI - Disinhibition Frequency", + "label": "NPI - Disinhibition Frequency (C103623)", + "description": "Neuropsychiatric Inventory - Frequency of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103623", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_32", + "extensionAttributes": [], + "name": "NPI - Disinhibition Severity", + "label": "NPI - Disinhibition Severity (C103624)", + "description": "Neuropsychiatric Inventory - Severity of the disinhibition.", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103624", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_33", + "extensionAttributes": [], + "name": "NPI - Disinhibition Distress", + "label": "NPI - Disinhibition Distress (C103625)", + "description": "Neuropsychiatric Inventory - How emotionally distressing do you find this behavior?", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C103625", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_34", + "extensionAttributes": [], + "name": "NPI - Disinhibition FxS Score", + "label": "NPI - Disinhibition FxS Score (C112476)", + "description": "Neuropsychiatric Inventory - Disinhibition: (frequency score x severity score).", + "reference": "https://evsexplore.semantics.cancer.gov/evsexplore/concept/ncit/C112476", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "bcCategories": [], + "eligibilityCriterionItems": [], + "narrativeContentItems": [], + "abbreviations": [], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "dictionaries": [], + "conditions": [], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "SOA Workbench", + "systemVersion": "pi-fix-bc-props-specs-in-usdm" +} diff --git a/pyproject.toml b/pyproject.toml index b6ad7d3..ab74fc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,8 @@ dependencies = [ "python-multipart>=0.0.9", "jmespath>=1.1.0", "cdisc-library-client>=0.1.6", - "mcp>=1.0.0" + "mcp>=1.0.0", + "python-docx>=1.1.0" ] [project.optional-dependencies] diff --git a/schema/define.yaml b/schema/define.yaml new file mode 100644 index 0000000..508b60a --- /dev/null +++ b/schema/define.yaml @@ -0,0 +1,2562 @@ +id: https://cdisc.org/dds +name: Data-Definition-Specification +title: Data Definition Specification (DDS) +description: >- + Data model for supply and demand data contracts to complement CDISC USDM, ODM, and Dataset-JSON. + This LinkML version includes semantics to act as Rosetta Stone for SDMX, FHIR, OMOP, RDF, and CDISC. +license: MIT +prefixes: + linkml: https://w3id.org/linkml/ + skos: http://www.w3.org/2004/02/skos/core# + odm: https://cdisc.org/odm2/ + usdm: https://cdisc.org/usdm/ + sdtm: https://cdisc.org/cosmos/sdtm_v1.0# + fhir: http://hl7.org/fhir/ + NCIT: http://purl.obolibrary.org/obo/NCIT_ + omop: https://omop.org/omop-cdm/ + qb: http://purl.org/linked-data/cube# + sdmx: http://purl.org/linked-data/sdmx# + dprod: https://ekgf.github.io/dprod/ + prov: http://www.w3.org/ns/prov# + dcat: http://www.w3.org/ns/dcat# + osb: https://openstudybuilder.com/ + dcterms: http://purl.org/dc/terms/ + dds: https://cdisc.org/dds +default_prefix: dds +default_range: string + +imports: + - linkml:types + +classes: + IdentifiableElement: + abstract: true + mixins: + - Identifiable + - Labelled + + GovernedElement: + abstract: true + mixins: + - Identifiable + - Labelled + - Governed + + Identifiable: + description: >- + A mixin that provides slots for making an entity addressable within a study or context + mixin: true + attributes: + OID: + description: >- + Local identifier within this study/context. + Use CDISC OID format for regulatory submissions, + or simple strings for internal use. + identifier: true + required: false + range: string + uuid: + description: Universal unique identifier + range: string + + Governed: + description: >- + A mixin that provides slots for audit trail and standards governance, including mandatory status, comments, and attribution + mixin: true + attributes: + mandatory: + description: >- + Is this element required? + range: boolean + comments: + description: >- + Comment on the element, such as a rationale for its inclusion or exclusion + range: Comment + multivalued: true + inlined: false + siteOrSponsorComments: + description: >- + Comment on the element, such as a rationale for its inclusion or exclusion + range: SiteOrSponsorComment + multivalued: true + inlined: false + purpose: + description: Purpose or rationale for this data element + any_of: + - range: string + - range: TranslatedText + lastUpdated: + description: When the resource was last updated + range: datetime + owner: + description: Party responsible for this element + narrow_mappings: + - prov:wasAttributedTo + - prov:wasAssociatedBy + any_of: + - range: User + - range: Organization + - range: string + wasDerivedFrom: + description: >- + Reference to another item that this item implements or extends, e.g. a template Item definition. + exact_mappings: + - prov:wasDerivedFrom + any_of: + - range: Item + - range: ItemGroup + - range: MetaDataVersion + - range: CodeList + - range: ReifiedConcept + - range: ConceptProperty + - range: Condition + - range: Method + - range: NominalOccurrence + - range: Dataflow + - range: CubeComponent + - range: DataProduct + - range: ProvisionAgreement + + Labelled: + description: >- + A mixin that provides slots for detailing meanings and multilingual descriptions + mixin: true + attributes: + name: + description: Short name or identifier, used for field names + range: string + description: + description: Detailed description, shown in tooltips + any_of: + - range: string + - range: TranslatedText + coding: + description: Semantic tags for this element + range: Coding + multivalued: true + inlined: true + inlined_as_list: true + label: + description: Human-readable label, shown in UIs + any_of: + - range: string + - range: TranslatedText + exact_mappings: + - skos:prefLabel + aliases: + description: >- + Alternative name or identifier + any_of: + - range: string + - range: TranslatedText + multivalued: true + inlined: true + inlined_as_list: true + exact_mappings: + - skos:altLabel + + Formatted: + description: >- + A mixin that provides slots for reporting, exchange, or storage formatting + mixin: true + related_mappings: + - sdmx:Facet + - sdmx:Representation + attributes: + decimalDigits: + description: >- + For decimal values, the number of digits after the decimal point + range: integer + displayFormat: + description: >- + A display format for the item + range: string + significantDigits: + description: >- + For numeric values, the number of significant digits + range: integer + + Versioned: + description: >- + A mixin that provides version and connectivity information, including version numbers and resource references + mixin: true + attributes: + version: + description: >- + The version of the external resources + range: string + href: + description: Machine-readable instructions to obtain the resource e.g. FHIR path, URL + range: string + required: false + + IsProfile: + description: >- + A mixin that provides additional metadata for FHIR resources and Data Products, including profiles, security tags, and validity periods + mixin: true + mixins: + - Versioned + attributes: + profile: + description: Profiles this resource claims to conform to + range: string + multivalued: true + security: + description: Security tags applied to this resource + range: Coding + multivalued: true + inlined: true + inlined_as_list: true + authenticator: + description: Who/what authenticated the resource + any_of: + - range: User + - range: Organization + - range: string + required: false + validityPeriod: + description: Time period during which the resouce is valid + range: Timing + required: false + + IsODMItem: + mixin: true + description: >- + A mixin that provides additional attributes for CDISC Operational Data Model items, including roles, completion instructions, and implementation notes + attributes: + role: + description: >- + Identifies the role of the item within the containing context, taken from the roleCodeList + any_of: + - range: string + - range: TranslatedText + roleCodeList: + description: >- + Reference to the CodeList that defines the roles for this item + range: CodeList + hasNoData: + description: >- + True if this is a manifest and there is no data for this item + range: boolean + crfCompletionInstructions: + any_of: + - range: string + - range: TranslatedText + description: >- + CRFCompletionInstructions reference: Instructions for the clinical site on how to enter collected information on the CRF + cdiscNotes: + any_of: + - range: string + - range: TranslatedText + description: >- + CDISCNotes reference: Explanatory text for the variable + implementationNotes: + description: >- + ImplementationNotes reference: Further information, such as rationale and implementation instructions, on how to implement the CRF data collection fields + any_of: + - range: string + - range: TranslatedText + collectionExceptionCondition: + description: >- + Condition that defines when collection may be exempted + range: Condition + preSpecifiedValue: + description: >- + Prefill value or a default value for a field that is automatically populated. + any_of: + - range: string + - range: TranslatedText + + IsODMStandard: + description: >- + A mixin that provides properties to indicate standards compliance + mixin: true + attributes: + standard: + description: Reference to the standard being implemented + range: Standard + isNonStandard: + description: One or more members of this set are non-standard extensions + range: boolean + + ODMFileMetadata: + description: >- + A mixin that provides ODM file-level metadata attributes including file identifiers, timestamps, and system information + mixin: true + attributes: + fileOID: + description: Unique identifier for the ODM file + range: string + required: true + asOfDateTime: + description: Date and time when the data snapshot was taken + range: datetime + creationDateTime: + description: Date and time when the ODM file was created + range: datetime + required: true + odmVersion: + description: Version of the ODM standard used + range: string + required: true + fileType: + description: Type of ODM file (e.g., Snapshot, Transactional) + range: string + required: true + originator: + description: Organization or system that created the ODM file + range: string + sourceSystem: + description: Source system that generated the data + range: string + sourceSystemVersion: + description: Version of the source system + range: string + context: + description: Define-XML context (usually "Other" for Define-XML) + range: string + defineVersion: + description: Version of Define-XML specification used + range: string + + StudyMetadata: + description: >- + A mixin that provides study-level metadata attributes including study identification and protocol information + mixin: true + attributes: + studyOID: + description: Unique identifier for the study + range: string + required: true + studyName: + description: Name of the study + range: string + studyDescription: + description: Description of the study + range: string + protocolName: + description: Protocol name for the study + range: string + + MetaDataVersion: + tree_root: true + description: >- + A container element that represents a given version of a specification, linking to a particular usage context such as a study, dataset, or data collection instrument. + close_mappings: + - usdm:StudyDesign + is_a: GovernedElement + mixins: + - ODMFileMetadata + - StudyMetadata + attributes: + itemGroups: + description: >- + Item groups, containing items, defined in this version of the metadata + range: ItemGroup + multivalued: true + inlined: true + inlined_as_list: true + items: + description: >- + Template or top-level items (not belonging to any item group) defined in this version of the metadata + range: Item + multivalued: true + inlined: true + inlined_as_list: true + conditions: + description: >- + Logical conditions that apply to this version of the metadata. + range: Condition + multivalued: true + inlined: true + inlined_as_list: true + whereClauses: + description: >- + Data contexts that apply to this version of the metadata. + range: WhereClause + multivalued: true + inlined: true + inlined_as_list: true + methods: + description: >- + Methods defined in this version of the metadata. + range: Method + multivalued: true + inlined: true + inlined_as_list: true + analyses: + description: >- + Analyses defined in this version of the metadata. + range: Analysis + multivalued: true + inlined: true + inlined_as_list: true + codeLists: + description: >- + Code lists defined in this version of the metadata. + range: CodeList + multivalued: true + inlined: true + inlined_as_list: true + codings: + description: Codings defined in this version of the metadata + range: Coding + multivalued: true + inlined: true + inlined_as_list: true + concepts: + description: Structured Concepts defined in this version of the metadata + range: ReifiedConcept + multivalued: true + relationships: + description: >- + Relationships between items, item groups, and other elements in this version of the metadata. + range: Relationship + multivalued: true + inlined: true + inlined_as_list: true + dictionaries: + description: Dictionaries defined in this version of the metadata + range: Dictionary + multivalued: true + inlined: true + inlined_as_list: true + standards: + description: >- + Standards defined in this version of the metadata + range: Standard + multivalued: true + inlined: true + inlined_as_list: true + annotatedCRFs: + description: >- + Reference to annotated case report forms + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true + resources: + description: >- + References to resources and documents that describe this version of the metadata. + any_of: + - range: DocumentReference + - range: Resource + multivalued: true + inlined: true + inlined_as_list: true + dataProducts: + description: >- + Indexed data flows with clear ownership + range: DataProduct + multivalued: true + inlined: true + inlined_as_list: true + displays: + description: >- + Displays defined in this version of the metadata. + range: Display + multivalued: true + inlined: true + inlined_as_list: true + + Item: + description: >- + A data element that represents a specific piece of information within a defined context, with data type, constraints, and derivation methods + close_mappings: + - odm:ItemRef + - odm:ItemDef + - qb:ComponentSpecification + - sdmx:DataAttribute + - sdmx:MetadataAttribute + narrow_mappings: + - fhir:StructureDefinition/variable + - fhir:Questionnaire/item + - qb:ComponentProperty + - omop:Field + - omop:DerivedColumn + related_mappings: + - usdm:BiomedicalConceptProperty + - usdm:DerivationConceptProperty + - usdm:AnalysisConceptProperty + - fhir:ElementDefinition + - qb:Measure + - qb:Attribute + - sdmx:Concept + - sdmx:Component + - sdmx:Representation + - osb:sdtm_variable + - osb:specimen + - osb:unit_dimension + - osb:std_unit + is_a: GovernedElement + mixins: + - IsODMItem + - Formatted + attributes: + dataType: + description: >- + The data type of the item. + range: DataType + required: true + length: + description: >- + The maximum length of the data item in characters. + range: integer + codeList: + description: >- + Reference to the CodeList that constrains the item values. + range: CodeList + method: + description: >- + Reference to the Method element that describes how to derive this item's value. + range: Method + rangeChecks: + description: Range checks applied to this item (e.g. edit checks, CORE rules) + range: RangeCheck + multivalued: true + inlined: true + inlined_as_list: true + applicableWhen: + description: | + References to different situations that define when this item applies. + Multiple whereClauses are combined with OR logic: the item applies if ANY referenced WhereClause matches. + Within each WhereClause, conditions are combined with AND logic: all conditions must be true. + + Example: whereClause: ["WC.SYSBP", "WC.DIABP"] means the item applies when + (all conditions in WC.SYSBP are true) OR (all conditions in WC.DIABP are true). + range: WhereClause + multivalued: true + inlined: false + close_mappings: + - fhir:StructureDefinition/context + origin: + description: >- + The origin of the data + range: Origin + multivalued: true + inlined: true + inlined_as_list: true + conceptProperty: + description: >- + Reference to a abstract concept property that this item is a specialization / instance of. + range: ConceptProperty + + ItemGroup: + description: >- + A collection element that groups related items or subgroups within a specific context, used for tables, FHIR resource profiles, biomedical concept specializations, or form sections + close_mappings: + - odm:ItemGroupDef + - odm:ItemGroupRef + - osb:ActivityInstance + narrow_mappings: + - fhir:StructureDefinition + - fhir:ViewDefinition + - fhir:Questionnaire + - omop:Table + - qb:DataStructureDefinition + - sdmx:DataStructureDefinition + - sdmx:MetaDataStructureDefinition + related_mappings: + - qb:Dataset + - qb:Observation + - qb:ObservationGroup + - qb:Slice + - osb:Activity + is_a: GovernedElement + mixins: + - IsProfile + - IsODMStandard + attributes: + domain: + description: >- + Domain abbreviation for the dataset. + range: string + structure: + description: >- + Data structure of the item group, indicating how the records are organized. + If this is a FHIR Resource, is it nested or flattened? + If this is a structured concept, is it a Biomedical/Derivation/Analysis concept? + any_of: + - range: string + - range: TranslatedText + isReferenceData: + description: >- + Set to Yes if this is a reference item group. + range: boolean + type: + description: >- + Type of item group + range: ItemGroupType + items: + description: Items in this group + range: Item + multivalued: true + close_mappings: + - fhir:StructureDefinition/snapshot + - fhir:StructureDefinition/differential + inlined: true + inlined_as_list: true + keySequence: + description: >- + Ordered list of Items that define the dataset key structure for sorting and uniqueness. + Each entry is an OID reference to an Item in the items array. + Order determines sorting precedence, merge operations, and record uniqueness. + These are allowed to be null, unlike stricter dataset dimensions or primary keys. + range: Item + multivalued: true + close_mappings: + - odm:ItemRef.KeySequence + - sdmx:DimensionDescriptor + slices: + description: >- + Slices are specific subset ItemGroups that belong to, or are used by this ItemGroup + range: ItemGroup + multivalued: true + inlined: true + inlined_as_list: true + implementsConcept: + description: >- + Reference to a abstract concept topic that this item group is a specialization of + range: ReifiedConcept + applicableWhen: + description: | + References to different situations that define when this item applies. + Multiple whereClauses are combined with OR logic: the item applies if ANY referenced WhereClause matches. + Within each WhereClause, conditions are combined with AND logic: all conditions must be true. + + Example: whereClause: ["WC.SYSBP", "WC.DIABP"] means the item applies when + (all conditions in WC.SYSBP are true) OR (all conditions in WC.DIABP are true). + range: WhereClause + multivalued: true + inlined: false + close_mappings: + - fhir:StructureDefinition/context + hasNoData: + description: >- + Used to indicate that this ItemGroup has no data, e.g. for a manifest. + range: boolean + observationClass: + description: >- + Identifies the predefined CDISC model Class. + range: DefClass + required: false + + DefClass: + description: >- + The predefined CDISC model Class that applies to an ItemGroupDef. + attributes: + name: + description: >- + Name of the General Observation Class following CDISC Controlled Terminology. + range: string + required: true + subClasses: + description: >- + One or more SubClasses that further identify the specific SubClass within a Class. + range: SubClass + multivalued: true + required: false + inlined: true + inlined_as_list: true + + SubClass: + description: >- + A specific SubClass within a CDISC model Class. + attributes: + name: + description: >- + Name of the SubClass following CDISC Controlled Terminology for SubClass. + range: string + required: true + parentClass: + description: >- + Name of the parent Class or SubClass following CDISC Controlled Terminology. + range: string + required: false + subClasses: + description: >- + Nested SubClass(es) for multi-level SubClass hierarchy. + range: SubClass + multivalued: true + required: false + inlined: true + inlined_as_list: true + + Relationship: + description: >- + A semantic link that defines connections between elements such as Items or ItemGroups, capturing relationships like "is the unit for" or "assesses seriousness of" + related_mappings: + - sdmx:ConceptSchemeMap + is_a: IdentifiableElement + attributes: + subject: + description: >- + The starting element of the relationship (e.g., an Item or ItemGroup). + range: IdentifiableElement + required: true + object: + description: >- + The ending element of the relationship. + range: IdentifiableElement + required: true + predicateTerm: + description: >- + Short variable relationship linking phrase for programming purposes. + range: PredicateTermEnum + required: true + linkingPhrase: + description: >- + Variable relationship descriptive linking phrase. + range: LinkingPhraseEnum + required: true + + Translation: + description: >- + A text representation that provides content in a specific language, used for multilingual support + exact_mappings: + - odm:TranslatedText + - sdmx:InternationalString + attributes: + "language": + description: The language of the translation + range: string + required: true + "value": + description: The translated text + range: string + required: true + + TranslatedText: + description: >- + A container of the language-specific translations of a single piece of text + (a set of localised strings), as opposed to one Translation. + attributes: + translations: + range: Translation + multivalued: true + inlined: true + inlined_as_list: true + + CodeList: + description: >- + A value set that defines a discrete collection of permissible values for an item, corresponding to the ODM CodeList construct + exact_mappings: + - odm:CodeList + - omop:Vocabulary + - fhir:ValueSet + close_mappings: + - skos:Collection + - sdmx:ItemScheme + - qb:codeList + related_mappings: + - usdm:BiomedicalConceptProperty/responseCodes + narrow_mappings: + - sdmx:Codelist + - sdmx:ValueList + - sdmx:ConceptScheme + is_a: GovernedElement + mixins: + - Versioned + - IsODMStandard + attributes: + dataType: + description: >- + The data type for the values in the code list + range: DataType + formatName: + description: >- + Name of a standard format definition + range: string + codeListItems: + description: >- + The individual values that make up this CodeList. + The type of CodeListItem included determines its behaviour + range: CodeListItem + multivalued: true + inlined: true + inlined_as_list: true + externalCodeList: + description: >- + Reference to a code list that is defined externally to this study + range: Resource + + CodeListItem: + description: >- + A structured member of a CodeList that extends the Coding class with additional context-specific properties + exact_mappings: + - odm:CodeListItem + close_mappings: + - usdm:AliasCode + - usdm:ResponseCode + - fhir:CodeableConcept + - omop:Concept + narrow_mappings: + - sdmx:Code + - sdmx:ValueItem + attributes: + codedValue: + description: >- + The value of the CodeListItem before decoding + range: string + required: true + decode: + description: >- + The decoded value of the CodeListItem + range: string + description: + description: >- + A detailed description of the code (e.g., for documentation purposes) + any_of: + - range: string + - range: TranslatedText + coding: + description: >- + The dictionary definition of the CodeListItem + range: Coding + inlined: true + aliases: + description: Alternative labels for the code (ODM Alias, skos:altLabel) + any_of: + - range: string + - range: TranslatedText + multivalued: true + weight: + description: Numeric significance of the code (e.g., for scoring) + range: decimal + other: + description: >- + Flag to indicate that the term represents "other" content + range: boolean + + Comment: + description: >- + A descriptive element that contains explanatory text provided by a data or metadata handler + exact_mappings: + - odm:CommentDef + - usdm:CommentAnnotation + - fhir:Annotation + - sdmx:Annotation + is_a: GovernedElement + attributes: + text: + description: >- + The comment text. + any_of: + - range: string + - range: TranslatedText + required: true + documents: + description: >- + References to documents that contain or are referenced by this comment + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true + + Coding: + description: >- + A semantic reference that provides standardized codes and their meanings from controlled vocabularies + exact_mappings: + - odm:Coding + - usdm:Code + - fhir:Coding + close_mappings: + - omop:Concept + - skos:Concept + - skos:Label + - sdmx:Code + - sdmx:Concept + - sdmx:ISOConceptReference + attributes: + code: + description: >- + The code value + range: string + required: true + decode: + description: Human-readable meaning + any_of: + - range: string + - range: TranslatedText + exact_mappings: + - skos:prefLabel + codeSystem: + description: >- + The code system identifier + range: string + required: true + codeSystemVersion: + description: >- + The code system version + range: string + aliasType: + description: >- + How this coding is related in the context of its parent element + range: AliasPredicate + + Dictionary: + description: >- + A dictionary that defines a set of codes and their meanings + is_a: IdentifiableElement + mixins: + - Versioned + attributes: + terms: + description: Terms in this dictionary - leave this empty in most cases to keep the file small + range: Coding + multivalued: true + inlined: true + inlined_as_list: true + publishedBy: + description: >- + Associates the Data Provider that reports/publishes the data. + any_of: + - range: Organization + - range: string + + ReifiedConcept: + description: >- + A canonical information layer that makes abstract concepts explicit and referenceable, showing how different data implementations represent the same underlying meanings through a star schema structure with multiple properties + close_mappings: + - sdmx:MetaDataStructureDefinition + - sdmx:Concept + - osb:Activity + narrow_mappings: + - usdm:BiomedicalConcept + - usdm:AnalysisConcept + - usdm:DerivationConcept + related_mappings: + - osb:ActivityInstance + - osb:assm_group + - osb:assm_subgroup + is_a: GovernedElement + mixins: + - Versioned + attributes: + properties: + description: >- + Properties of the reified object, which can be other governed elements or simple values + range: ConceptProperty + multivalued: true + inlined: true + inlined_as_list: true + + ConceptProperty: + description: >- + A reified property concept that exists within the context of its containing topic concept + close_mappings: + - sdmx:MetaDataAttribute + - sdmx:Concept + narrow_mappings: + - usdm:BiomedicalConceptProperty + - usdm:DerivationConceptProperty + - usdm:AnalysisConceptProperty + related_mappings: + - osb:sdtm_variable + - osb:specimen + - osb:unit_dimension + - osb:std_unit + - osb:laterality + - osb:location + - osb:position + is_a: GovernedElement + attributes: + minOccurs: + description: >- + Minimum number of occurrences of this property in the context. + Set to >0 to mandate some number of occurrences + range: integer + maxOccurs: + description: >- + Maximum number of occurrences of this property in the context. + Leave empty for unbounded. Set to 0 to disable property + range: integer + codeList: + description: >- + Reference to a CodeList that constrains the values of this property + range: CodeList + + WhereClause: + description: >- + A conditional element that describes the circumstances under which a containing context applies, linking conditions to structures where they are used + close_mappings: + - sdmx:AttachmentConstraint + related_mappings: + - fhir:StructureDefinition/context + - qb:ObservationGroup + - qb:Slice + - sdmx:CubeRegion + - sdmx:MetadataTargetRegion + is_a: GovernedElement + attributes: + conditions: + description: Logical conditions that apply in this context (combined with AND) + range: Condition + multivalued: true + inlined: false + + Condition: + description: >- + A reusable, composable, and nestable logical construct allowing for complex expressions. + Conditions are most useful when given a meaningful name and linked to Study Definitions. + close_mappings: + - odm:ConditionDef + - usdm:Condition + related_mappings: + - fhir:Expression + - qb:SliceKey + - sdmx:DataConstraint + - sdmx:MetaDataConstraint + - sdmx:DataKeySet + is_a: GovernedElement + attributes: + rangeChecks: + description: Range checks that compose this condition + range: RangeCheck + multivalued: true + inlined: true + inlined_as_list: true + implementsCondition: + description: Reference to a external (e.g. USDM) condition definition that this implements + expressions: + description: >- + Logical expression, resolving to a boolean, that implements this condition in a specific context + range: FormalExpression + multivalued: true + inlined: true + inlined_as_list: true + operator: + description: >- + Logical operator for combining child conditions or range checks. + Defaults to ALL if not specified. + range: LogicalOperator + required: false + conditions: + description: >- + Child conditions to combine using the operator. + Multiple conditions are composed according to the operator (AND/OR/NOT). + Rearrange and nest to compose XOR, or combinations of AND and OR. + Unless the operator is EXPRESSION, in which case the formalExpression is used instead. + Use OID references to reuse conditions defined elsewhere. + range: Condition + multivalued: true + inlined: false + + RangeCheck: + description: >- + A validation element that performs a simple comparison check between a referenced item's value and specified values, resolving to a boolean result + related_mappings: + - qb:SliceKey + - sdmx:DataKey + attributes: + comparator: + description: >- + The type of comparison to be performed + range: Comparator + checkValues: + description: Values to compare against + range: string + multivalued: true + inlined: true + inlined_as_list: true + item: + description: >- + Reference to the Item element whose value is being checked. If not specified, check applies to the enclosing context + any_of: + - range: Item + - range: Dimension + - range: Measure + - range: DataAttribute + softHard: + description: >- + Indicates whether a validation check is an error ("Hard") or a warning ("Soft") + range: SoftHard + expressions: + description: >- + A formal expression for complex checks + range: FormalExpression + multivalued: true + inlined: true + inlined_as_list: true + operator: + description: >- + Logical operator for combining child conditions or range checks. + Defaults to ALL if not specified. + range: LogicalOperator + required: false + + FormalExpression: + description: >- + A computational element that defines the execution of a data derivation within a specific context + exact_mappings: + - odm:FormalExpression + - odm:FormalExpressionRef + - fhir:Expression + is_a: IdentifiableElement + attributes: + context: + description: >- + The specific context within the containing element to which this formal expression applies. + exact_mappings: + - fhir:Expression/language + range: string + expression: + description: >- + The actual text of the formal expression (renamed from 'code' for disambiguation). + range: string + aliases: [code] + required: true + returnType: + description: Return type of the expression + range: string + parameters: + description: Parameters used in the expression + range: Parameter + multivalued: true + inlined: true + inlined_as_list: true + returnValue: + description: Return value details + range: ReturnValue + externalCodeLibs: + description: External code libraries referenced + range: Resource + multivalued: true + + Method: + description: >- + A reusable computational procedure that describes how to derive values and can be referenced by Items. + + Analysis and Derivation concepts can be implemented by a Method. + Properties can be referenced by Parameters in its expressions. + exact_mappings: + - odm:MethodRef + - odm:MethodDef + close_mappings: + - fhir:Expression + - omop:Transformation + is_a: GovernedElement + attributes: + type: + description: >- + The type of method e.g. Computation, Imputation, Transformation. + range: MethodType + expressions: + description: >- + Formal expressions used by this method + range: FormalExpression + multivalued: true + inlined: true + inlined_as_list: true + documents: + description: >- + Reference to a document that describes this method in detail. + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true + implementsConcept: + description: >- + Reference to a specific concept that this Method implements. + range: ReifiedConcept + inlined: false + + SourceItem: + description: >- + A data source that provides the origin of information for an item + attributes: + item: + description: Reference to an item + range: Item + inlined: false + document: + description: Reference to an external document + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true + resource: + description: Path to a resource (e.g. File, FHIR datasource) that is the source of this item + any_of: + - range: Resource + - range: string + multivalued: true + inlined: false + coding: + description: >- + A coding that describes the source of the item + range: Coding + multivalued: true + inlined: true + inlined_as_list: true + + Parameter: + description: >- + A variable element that describes an input used in a formal expression + is_a: IdentifiableElement + attributes: + dataType: + description: >- + The data type of the parameter. + range: DataType + codeList: + description: >- + A list of allowed values for the parameter. + range: CodeList + multivalued: true + value: + description: >- + A specific bound value for the parameter. + range: string + defaultValue: + description: >- + A default value for the parameter. + range: string + items: + description: >- + A list of item dependencies for the parameter. + any_of: + - range: Item + - range: Dimension + - range: Measure + - range: DataAttribute + multivalued: true + inlined: false + conceptProperty: + description: >- + Reference to a specific concept property that this parameter represents or modifies. + range: ConceptProperty + multivalued: true + inlined: false + applicableWhen: + description: >- + References to different situations that define when this parameter + is applicable or required in the containing expression. + Multiple whereClauses are combined with OR logic: the parameter applies + if ANY referenced WhereClause matches. + + Within each WhereClause, conditions are combined with AND logic. + Example: applicableWhen: ["WC.ADULT", "WC.PEDIATRIC"] means the parameter + is needed when (all conditions in WC.ADULT are true) OR + (all conditions in WC.PEDIATRIC are true). + range: WhereClause + multivalued: true + inlined: false + conditions: + description: >- + Validation conditions that constrain this parameter's value beyond controlled terminology. + Multiple conditions are combined with AND logic: all must be satisfied. + Use these for parameter validation rules, distinct from applicableWhen + which determines if the parameter is needed at all. + + Example: A parameter AGE might have conditions ensuring it's >= 0 and <= 120. + or conditions might make up part of a componsed expression. + range: Condition + multivalued: true + inlined: false + required: + description: >- + Indicates whether this parameter must be provided when the + containing expression is evaluated (technical constraint). + range: boolean + ifabsent: 'False' + + ReturnValue: + description: >- + An output specification that defines the details of what a formal expression returns + is_a: IdentifiableElement + attributes: + dataType: + description: >- + The data type of the return value. + range: DataType + valueList: + description: >- + A list of possible return values. + range: string + multivalued: true + + Origin: + description: >- + A provenance element that describes the source of data for an item + attributes: + type: + description: >- + The type of origin: Assigned, Collected, Derived, Protocol, Predecessor, Not Available, or Other. + range: OriginType + source: + description: >- + The source of the data, such as Investigator, Sponsor, Subject, or Vendor. + range: OriginSource + sourceItems: + description: >- + Source items for this origin + range: SourceItem + multivalued: true + inlined: true + inlined_as_list: true + documents: + description: >- + Reference to a document that describes this origin in detail. + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true + + SiteOrSponsorComment: + description: >- + A feedback element that contains comments from a site or sponsor, distinct from the general Comment class + is_a: GovernedElement + attributes: + text: + description: >- + The comment text. + any_of: + - range: string + - range: TranslatedText + required: true + sourceType: + description: >- + who made the comment, such as Investigator, Sponsor. + range: OriginSource + source: + description: >- + ID of the comment provider + any_of: + - range: User + - range: Organization + - range: string + + User: + description: >- + An entity that represents information about a specific user of a clinical data collection or data management system + exact_mappings: + - odm:User + broad_mappings: + - prov:Agent + is_a: IdentifiableElement + attributes: + userType: + description: >- + User's role in the study. + range: UserType + userName: + description: >- + The username of the user. + range: string + fullName: + description: >- + The full name of the user. + range: string + organization: + description: >- + The organization the user belongs to. + close_mappings: + - prov:actedOnBehalfOf + range: Organization + + Organization: + description: >- + An entity that represents organizational information, such as a site or sponsor + exact_mappings: + - odm:Organization + - usdm:Organization + - sdmx:Organisation + broad_mappings: + - prov:Agent + is_a: IdentifiableElement + attributes: + role: + description: >- + The role of the organization in the study. + range: string + type: + description: >- + The type of organization (e.g., site, sponsor, vendor). + range: OrganizationType + location: + description: >- + The physical location of the organization. + range: string + address: + description: >- + The address of the organization. + range: string + partOfOrganization: + description: >- + Reference to a parent organization if this organization is part of a larger entity. + range: Organization + + Standard: + description: >- + A collection element that groups related standards within a specific context, used for defining CDISC implementation guides and controlled terminologies + exact_mappings: + - odm:Standard + is_a: IdentifiableElement + attributes: + name: + description: >- + Name of a standard + range: StandardName + type: + description: >- + Type of a standard + range: StandardType + publishingSet: + description: >- + Publishing Set of a Controlled Terminology + range: PublishingSet + version: + description: >- + Version of an Implementation Guide or of a Controlled Terminology + range: string + status: + description: >- + Status of an Implementation Guide or of a Controlled Terminology + range: StandardStatus + + Resource: + description: >- + An external reference that serves as the source for a Dataset, ItemGroup, or Item + close_mappings: + - odm:Resource + is_a: IdentifiableElement + mixins: + - Versioned + attributes: + resourceType: + description: >- + Type of resource (e.g., "ODM", "HL7-FHIR", "HL7-CDA", "HL7-v2", "OpenEHR-extract") + range: string + required: false + attribute: + description: >- + Field provided by the Name attribute where the data or information can be obtained. + Examples are "valueQuantity.value" or "valueQuantity.unit". + range: string + selection: + description: >- + Machine-executable instructions for selecting data from the resource. + range: FormalExpression + multivalued: true + inlined: true + inlined_as_list: true + + DocumentReference: + description: >- + A comprehensive reference element that points to an external document, combining elements from ODM and FHIR + is_a: IdentifiableElement + mixins: + - Versioned + attributes: + title: + description: Document title + range: string + leafID: + description: Leaf identifier for document reference in Define-XML + range: string + pages: + description: Reference to specific pages in a PDF document + range: integer + multivalued: true + required: false + relationship: + description: Relationship to the referencing entity + range: string + required: false + + Timing: + description: >- + A temporal element that describes the timing of an event or occurrence, which can be absolute, relative, or nominal + exact_mappings: + - usdm:Timing + broad_mappings: + - fhir:Timing + narrow_mappings: + - omop:Observation_period + - omop:Drug_era + - omop:Condition_era + - omop:Procedure_era + - fhir:Period + - fhir:Age + - fhir:Duration + is_a: IdentifiableElement + attributes: + type: + description: >- + The type of timing: Fixed, Before (Relative), or After (Relative). + range: TimingType + required: true + isNominal: + description: >- + Indicates whether the timing is nominal (event-based) or not. + range: boolean + value: + description: >- + The value of the timing, which can be a date/time, duration, or event reference. + range: string + required: true + relativeTo: + description: >- + Reference to the event or occurrence that this timing is relative to. + range: NominalOccurrence + relativeFrom: + description: >- + Reference to the event or occurrence that this timing is relative to. + range: NominalOccurrence + windowLower: + description: Start date/time of the timing + range: datetime + windowUpper: + description: End date/time of the timing + range: datetime + recalled: + description: >- + Indicates whether the timing is recalled or not (recalled timings are less reliable). + range: boolean + frequency: + description: >- + Frequency. Use dose frequency terminology e.g. "BID" if applicable. + range: string + imputation: + description: >- + The imputation method used for the Timing. + range: Method + + NominalOccurrence: + description: >- + An event element that represents occurrences such as planned or unplanned encounters or adverse events + narrow_mappings: + - usdm:ScheduledInstance + - usdm:Encounter + - usdm:InterCurrentEvent + - fhir:PlanDefinition/action + - fhir:ActivityDefinition + - fhir:Encounter + - fhir:AdverseEvent + - omop:Visit_occurrence + - omop:Condition_occurrence + - omop:Procedure_occurrence + related_mappings: + is_a: GovernedElement + attributes: + timing: + description: >- + A named event reference, that can nest further named timing references. + range: Timing + required: true + event: + description: >- + The ID of the event in a Schedule. + range: string + required: false + condition: + description: >- + A condition that must be met for this occurrence to be valid. + range: Condition + multivalued: true + + # New classes for Data Cube, Analysis Concept, and DTA governance + DataStructureDefinition: + description: >- + A structural element that defines the organization of a data cube for analysis, including dimensions, attributes, and measures + close_mappings: + - sdmx:DataStructureDefinition + - qb:DataStructureDefinition + is_a: ItemGroup + attributes: + dimensions: + range: Dimension + multivalued: true + measures: + range: Measure + multivalued: true + attributes: + range: DataAttribute + multivalued: true + grouping: + description: >- + An association to a set of metadata concepts that have an identified + structural role in a Data Structure Definition. + range: ComponentList + evolvingStructure: + range: boolean + ifabsent: 'False' + + Dataflow: + description: >- + An abstract representation that defines data provision for different reference periods, where a Distribution and its Dataset are instances + close_mappings: + - sdmx:Dataflow + related_mappings: + - dprod:Distribution + - dcat:Distribution + - dprod:DataService + - dcat:DataService + is_a: GovernedElement + mixins: + - Versioned + attributes: + structure: + description: >- + Structured component specification for this flow + range: DataStructureDefinition + required: true + dimensionConstraint: + description: >- + Subset of dimensions that are agreed upon by the dataflow and must be included. + range: Dimension + multivalued: true + analysisMethod: + description: >- + Metadata about the analysis method used to produce the data in this dataflow. + range: Analysis + + IsSdmxDataset: + mixin: true + description: >- + A mixin that provides additional metadata specific to SDMX Datasets + attributes: + action: + description: >- + Defines the action to be taken by the recipient system (information, append, replace, delete) + reportingBegin: + description: >- + A specific time period in a known system of time periods that + identifies the start period of a report. + reportingEnd: + description: >- + A specific time period in a known system of time periods that identifies + the end period of a report. + dataExtractionDate: + description: >- + A specific time period that identifies the date and time that the data are + extracted from a data source. + validFrom: + description: >- + Indicates the inclusive start time indicating the validity of the information + in the data set. + validTo: + description: >- + Indicates the inclusive end time indicating the validity of the information in the data set. + publicationYear: + description: >- + Specifies the year of publication of the data or metadata in terms of whatever + provisioning agreements might be in force. + publicationPeriod: + description: >- + Specifies the period of publication of the data or metadata in terms of whatever provisioning + agreements might be in force. + + Dataset: + description: >- + A collection element that groups observations sharing the same dimensionality, expressed as a set of unique dimensions within a Data Product context + close_mappings: + - qb:Dataset + - sdmx:Dataset + - dprod:Dataset + - dcat:Dataset + narrow_mappings: + - sdmx:JsonDataset + - sdmx:CsvDataset + - sdmx:StructureSpecificDataset + is_a: IdentifiableElement + mixins: + - Versioned + - IsProfile + - IsSdmxDataset + attributes: + describedBy: + description: >- + Associates a Dataflow and thereby a Data Structure Definition to the data set. + range: Dataflow + structuredBy: + description: >- + Associates the Data Structure Definition that defines the structure of the Data Set. + Note that the Data Structure Definition is the same as that associated (non-mandatory) to the Dataflow. + range: DataStructureDefinition + publishedBy: + description: >- + Associates the Data Provider that reports/publishes the data. + any_of: + - range: Organization + - range: string + keys: + description: >- + Series and Group keys in the data that are associated with dimensions in this structure + any_of: + - range: SeriesKey + - range: GroupKey + required: true + multivalued: true + inlined: true + inlined_as_list: true + datasetType: + description: Type or classification of the dataset + distribution: + description: Representations of this dataset in various formats or access methods + range: Distribution + multivalued: true + inlined: true + inlined_as_list: true + exact_mappings: + - dcat:distribution + conformsTo: + description: Specification or standard that this dataset conforms to + close_mappings: + - dcterms:conformsTo + hasPolicy: + description: Access or usage policy applied to this dataset + multivalued: true + inlined: true + inlined_as_list: true + informationSensitivityClassification: + description: Classification of the dataset's sensitivity or confidentiality + + DatasetKey: + description: >- + An abstract identifier that comprises the cross-product of dimension values to identify a specific cross-section + abstract: true + exact_mappings: + - sdmx:Key + attributes: + describedBy: + description: >- + Associates the Dimension Descriptor defined in the Data Structure Definition + any_of: + - range: Dimension + - range: ComponentList + keyValues: + description: >- + List of Key Values that comprise each key, separated by a dot + e.g. SUBJ001.VISIT2.BMI + attributeValues: + description: >- + Association to the Attribute Values relating to Key + + GroupKey: + description: >- + A dimension subset that represents collections of dimensions that are subsets of the full dimension set, distinct from SeriesKey which includes Time dimensions + exact_mappings: + - sdmx:GroupKey + is_a: DatasetKey + + SeriesKey: + description: >- + A unique identifier that comprises the cross-product of dimension values including Time to identify observations, representing dimensions shared by all observations in a conceptual series + exact_mappings: + - sdmx:SeriesKey + is_a: DatasetKey + + CubeComponent: + description: >- + An abstract data field that represents a component in a data structure definition, referencing an Item for its definition + abstract: true + exact_mappings: + - sdmx:Component + is_a: GovernedElement + attributes: + item: + description: >- + Reference to the Item that defines this component's data structure and properties + range: Item + required: true + role: + description: >- + The role this component plays in its Structure Definition + missingHandling: + description: >- + The method for handling missing values in the measure property + range: Method + imputation: + description: >- + The imputation method used for the measure property + range: Method + + Measure: + description: >- + A data cube property that describes a measurable quantity or value + exact_mappings: + - qb:MeasureProperty + - sdmx:Measure + is_a: CubeComponent + + Dimension: + description: >- + A data cube property that describes a categorical or hierarchical dimension + exact_mappings: + - qb:DimensionProperty + - sdmx:Dimension + broad_mappings: + - sdmx:DataAttribute + narrow_mappings: + - sdmx:MeasureDimension + - sdmx:TimeDimension + is_a: CubeComponent + + DataAttribute: + description: >- + A data cube property that describes additional characteristics or metadata about observations + exact_mappings: + - qb:AttributeProperty + - sdmx:DataAttribute + is_a: CubeComponent + + ComponentList: + description: >- + An abstract definition that specifies a list of components within a data structure definition, including various descriptor types + exact_mappings: + - sdmx:ComponentList + is_a: IdentifiableElement + attributes: + components: + description: >- + The components that make up this component list + any_of: + - range: Measure + - range: Dimension + - range: DataAttribute + multivalued: true + inlined: true + inlined_as_list: true + + # How a dataset is constructed, by attaching attributes to dimensions and measures at different levels + MeasureRelationship: + description: >- + A relationship element that associates a DataAttribute with a Measure + exact_mappings: + - sdmx:MeasureRelationship + attributes: + measure: + range: Measure + attribute: + range: DataAttribute + + DataflowRelationship: + description: >- + A relationship element that associates a DataAttribute with a Dataflow, reported at the Dataset level + exact_mappings: + - sdmx:DataflowRelationship + attributes: + dataFlow: + range: Dataflow + attribute: + range: DataAttribute + + GroupRelationship: + description: >- + A relationship element that associates a DataAttribute with a set of Dimensions, used when attribute values vary based on all group dimension values + exact_mappings: + - sdmx:GroupRelationship + attributes: + groupKey: + description: >- + Set of dimensions that this definition depends on + exact_mappings: + - sdmx:GroupDimensionDescriptor + range: ComponentList + attribute: + range: DataAttribute + + DimensionRelationship: + description: >- + A relationship element that associates a DataAttribute with a specific Dimension at a specific level + exact_mappings: + - sdmx:DimensionRelationship + attributes: + dimensions: + exact_mappings: + - sdmx:DimensionDescriptor + range: Dimension + multivalued: true + groupKey: + description: >- + Set of dimensions that this definition depends on + exact_mappings: + - sdmx:GroupDimensionDescriptor + range: ComponentList + attribute: + range: DataAttribute + + ObservationRelationship: + description: >- + A relationship element that associates a DataAttribute with an Observation, allowing value-level Items to be reused across multiple different Views + exact_mappings: + - sdmx:ObservationRelationship + attributes: + item: + description: >- + Reference to the Item in an observation context that this definition applies to. + e.g. the SDTM Variable Specialisation for a given Biomedical Concept Property. + exact_mappings: + - sdmx:ObservationDescriptor + range: Item + attribute: + range: DataAttribute + + # DPROD to complement Dataset class and link to DCAT ontology + DataProduct: + description: >- + A governed collection that represents a purpose-driven assembly of datasets and services with an owning team and lifecycle. + The DataProduct defines the boundary of accountability between data producers and consumers. + exact_mappings: + - dprod:DataProduct + - dcat:DataService + is_a: GovernedElement + mixins: + - Versioned + attributes: + dataProductOwner: + description: The person or team accountable for this data product + any_of: + - range: User + - range: Organization + - range: string + exact_mappings: + - prov:wasAttributedTo + domain: + description: The functional domain or business area this product serves + lifecycleStatus: + description: Current lifecycle status of the data product + range: DataProductLifecycleStatus + inputPort: + description: Services that provide input into this data product + range: DataService + multivalued: true + inlined: true + inlined_as_list: true + outputPort: + description: Services that expose output from this data product + range: DataService + multivalued: true + inlined: true + inlined_as_list: true + inputDataflow: + description: >- + Description of the input interface before concrete Datasets exist. + Dataflows referenced here represent the demand side of a ProvisionAgreement. + range: Dataflow + multivalued: true + inlined: true + inlined_as_list: true + close_mappings: + - dcat:distribution + outputDataflow: + description: >- + Description of the output interface before concrete Datasets exist. + Dataflows referenced here represent the supply side of a ProvisionAgreement. + range: Dataflow + multivalued: true + inlined: true + inlined_as_list: true + close_mappings: + - dcat:distribution + inputDataset: + description: Source datasets used by the data product + range: Dataset + multivalued: true + inlined: true + inlined_as_list: true + outputDataset: + description: Output datasets produced by the data product + range: Dataset + multivalued: true + inlined: true + inlined_as_list: true + hasPolicy: + description: Policies governing the use and access of the data product + multivalued: true + inlined: true + inlined_as_list: true + + Distribution: + description: >- + A technical representation that provides a specific format or access method for a dataset + exact_mappings: + - dprod:Distribution + - dcat:Distribution + narrow_mappings: + - sdmx:JsonDataset + - sdmx:CsvDataset + - sdmx:StructureSpecificDataset + attributes: + accessService: + description: Service that provides access to this distribution + range: DataService + conformsTo: + description: The standard or specification the distribution conforms to + any_of: + - range: string + - range: DataStructureDefinition + isDistributionOf: + description: Dataset this distribution represents + range: Dataset + format: + description: File format or serialization used in the distribution + + DataService: + description: >- + A service element that provides an API or endpoint for serving or receiving data + exact_mappings: + - dprod:DataService + - dcat:DataService + is_a: Resource + attributes: + isAccessServiceOf: + description: Distribution(s) for which this service provides access + range: Distribution + protocol: + description: Protocol used by the service (e.g., HTTPS, FTP) + securitySchemaType: + description: Security or authentication method used (e.g., OAuth2) + + DataProvider: + description: >- + An organization element that provides data to a Data Consumer, which can be a sponsor, site, or any other entity that supplies data + close_mappings: + - sdmx:DataProvider + is_a: Organization + attributes: + providesDataFor: + description: >- + The Dataflows that this provider supplies data for + range: Dataflow + multivalued: true + provisionAgreements: + description: >- + The ProvisionAgreements that this provider has with Data Consumers + range: ProvisionAgreement + multivalued: true + source: + description: >- + Association to a data source + range: Resource + multivalued: true + + ProvisionAgreement: + description: >- + An agreement element that describes the contractual relationship between a Data Provider and a Data Consumer regarding data provision + close_mappings: + - sdmx:ProvisionAgreement + is_a: GovernedElement + mixins: + - Versioned + attributes: + provider: + description: >- + The Data Provider that is part of this agreement + range: DataProvider + consumer: + description: >- + The Data Consumer that is part of this agreement + any_of: + - range: DataProduct + - range: Organization + - range: string + dataFlow: + description: >- + The Dataflow that is covered by this agreement + range: Dataflow + source: + description: >- + The source of the data provided under this agreement + range: Resource + + Analysis: + description: >- + Analysis extends Method to capture analysis-specific metadata + including the reason for analysis, its purpose, and data traceability + for the results used. + + Expressions and parameters from Method can be generic or implementation-specific. + is_a: Method + mixins: + - Versioned + attributes: + analysisReason: + description: >- + The reason this analysis was performed. + analysisPurpose: + description: >- + The purpose or role of this analysis in the study. + analysisMethod: + description: >- + Generic method used to perform this analysis. + range: Method + applicableWhen: + description: >- + The conditions (e.g. population, time period etc.) that must be met for this analysis to be applicable. + range: WhereClause + multivalued: true + inlined: false + inputData: + description: >- + Datasets or slices/subsets of datasets asked for by this analysis. + If a Item is referenced by a Parameter e.g. Analysis Variable, make sure to include its parent ItemGroup here. + any_of: + - range: ItemGroup + - range: Dataset + multivalued: true + inlined: false + + Display: + description: >- + A rendered output of an analysis result. + is_a: GovernedElement + mixins: + - Versioned + attributes: + analysis: + description: >- + Analysis result this display represents. + range: Analysis + displayType: + description: >- + The type of display this result represents. + e.g. table, listing, figure, dashboard. + location: + description: >- + Reference to documents / location containing the display. + range: DocumentReference + multivalued: true + inlined: true + inlined_as_list: true +enums: + AliasPredicate: + description: >- + An enumeration that defines permissible values for the relationship between an element and its alias + from_schema: linkml:AliasPredicateEnum + permissible_values: + EXACT_SYNONYM: + description: Codes have identical meaning e.g. "diabetes mellitus" and "DM" + meaning: skos:exactMatch + RELATED_SYNONYM: + description: Codes are related but not equivalent e.g. "diabetes" and "mellitus" + meaning: skos:relatedMatch + BROAD_SYNONYM: + description: Target is broader than source e.g. "diabetes" is broader than "type 2 diabetes" + meaning: skos:broaderMatch + NARROW_SYNONYM: + description: Target is narrower than source e.g. "type 2 diabetes" is narrower than "diabetes" + meaning: skos:narrowerMatch + + Comparator: + description: >- + An enumeration that defines the types of comparison operations available for a RangeCheck + permissible_values: + LT: + description: Less than + LE: + description: Less than or equal + GT: + description: Greater than + GE: + description: Greater than or equal + EQ: + description: Equal + NE: + description: Not equal + IN: + description: In set + NOTIN: + description: Not in set + + UserType: + description: >- + An enumeration that defines the types of users in a clinical data collection or management system + permissible_values: + Sponsor: + Investigator: + Lab: + Other: + Subject: + Monitor: + Data analyst: + Care provider: + Assessor: + + OrganizationType: + description: >- + An enumeration that defines the types of organizations involved in clinical research + permissible_values: + Sponsor: + Site: + CRO: + Lab: + TechnologyProvider: + Other: + + SoftHard: + description: >- + An enumeration that indicates whether a validation check should be treated as an error or a warning + permissible_values: + Soft: + description: Warning + Hard: + description: Error + + MethodType: + description: >- + An enumeration that defines the types of computational methods available for data processing + permissible_values: + Computation: + description: >- + Mathematical computation using values of other items. + Imputation: + description: >- + Assignment of a value based on a estimation (imputation) procedure. + Transformation: + description: >- + Transformation of the item's value according to a standard algorithm, such as a change in units. + Analysis: + description: >- + Creation of analysis results dataset. + Display: + description: >- + Creation of rendered output for display. + + DataType: + description: >- + An enumeration that defines the fundamental data types available for items + permissible_values: + text: + description: >- + Character text with no length restriction. + integer: + description: >- + Integer numbers. + float: + description: >- + Floating-point numbers (decimals). + date: + description: >- + Calendar date. + time: + description: >- + Time of day. + datetime: + description: >- + Calendar date and time of day. + boolean: + description: >- + Logical values (true/false). + double: + description: >- + Double-precision floating-point numbers. + hex: + description: >- + Hexadecimal number. + base64: + description: >- + Base-64 encoded binary data. + hexBinary: + description: >- + Hexadecimal encoded binary data. + durationDatetime: + description: >- + ISO 8601 duration value representing a span of time (e.g., P1Y2M3DT4H5M6S). + + OriginType: + description: >- + An enumeration that defines the types of origins for data items. + Values sourced from NCI Thesaurus subset C170449. + permissible_values: + Assigned: + description: >- + A value that is derived through designation, such as values from a look up table or a label on a CRF. + meaning: NCIT:C170547 + Collected: + description: >- + A value that is actually observed and recorded by a person or obtained by an instrument. + meaning: NCIT:C170548 + Derived: + description: >- + A value that is calculated by an algorithm or reproducible rule, and which is dependent upon other data values. + meaning: NCIT:C170549 + Not Available: + description: >- + A value that is not discoverable or accessible. + meaning: NCIT:C126101 + Other: + description: >- + Different than the one(s) previously specified or mentioned. (NCI) + Predecessor: + description: >- + A value that is copied from another variable. + meaning: NCIT:C170550 + Protocol: + description: >- + A value that is included as part of the study protocol. + meaning: NCIT:C170551 + + OriginSource: + description: >- + An enumeration that defines the sources of data origin + Values sourced from NCI Thesaurus subset C170450. + permissible_values: + Investigator: + text: Investigator + meaning: NCIT:C25936 + Sponsor: + text: Sponsor + meaning: NCIT:C70793 + Subject: + text: Subject + meaning: NCIT:C41189 + Vendor: + text: Vendor + meaning: NCIT:C68608 + + ItemGroupType: + description: >- + An enumeration that defines the roles of an item group within a specific context + permissible_values: + DataCube: + description: >- + A Data Structure Definition for an Analysis Data Cube of dimensions, measures, and attributes. + Table: + description: >- + A simple table or data frame. + Object: + description: >- + An object or profile of a FHIR resource. + DatasetSpecialization: + description: >- + A data specialization of a concept. + ValueList: + description: >- + A list of topic-specific items for a specific column (from Define-XML). + Section: + description: >- + A section of a form. + Form: + description: >- + A data collection form. + + TimingType: + description: >- + An enumeration that defines CDISC timing type values indicating the temporal relationship of an observation to a reference point + permissible_values: + After: + text: After + meaning: NCIT:C201356 + Before: + text: Before + meaning: NCIT:C201357 + Fixed: + text: Fixed + meaning: NCIT:C201358 + + # TODO: Add Enumerated terms for STATO / NCIT analysis concept relationships + + LinkingPhraseEnum: + description: >- + An enumeration that defines variable relationship descriptive linking phrases from the COSMoS SDTM BC model + permissible_values: + assesses seriousness of: + assesses the severity of: + associates the tumor identified in: + decodes the value in: + describes actions taken: + describes relationship of: + describes the outcome of: + further describes the test in: + further specifies the anatomical location in: + groups tumor assessments used in overall response identified by: + groups values in: + groups, within an individual subject, values in: + identifies a pattern of: + identifies an observation described by: + identifies overall response supported by tumor assessments identified by: + identifies the image from the procedure in: + identifies the tumor found by the test in: + indicates occurrence of the value in: + indicates pre-specification of the value in: + indicates severity of: + indicates the previous irradiation status of the tumor identified by: + indicates the progression status of the previous irradiated tumor identified by: + is a dictionary-derived term for the value in: + is a dictionary-derived class code for the value in: + is a dictionary-derived class name for the value in: + is decoded by the value in: + is original text for: + is the administered amount of the treatment in: + is the administration anatomical location for the treatment in: + is the aspect of the event used to define the date in: + is the clinical significance interpretation for: + is the code for the value in: + is the dictionary code for the test in: + is the dictionary-derived term for the value in: + is the dictionary-derived class code for the value in: + is the dictionary-derived class name for the value in: + is the duration for: + is the end date for: + is the epoch of the performance of the test in: + is the frequency of administration of the amount in: + is the identifier for the source data used in the performance of the test in: + is the material type of the subject of the activity in: + is the medical condition that is the reason for the treatment in: + is the method for the test in: + is the part of the body through which is administered the treatment in: + is the physical form of the product in: + is the result of the test in: + is the role of the assessor who performed the test in: + is the specimen tested in: + is the start date for: + is the subject position during performance of the test in: + is the subject's fasting status during the performance of the test in: + is the unit for the value in: + is the unit for: + specifies the anatomical location in: + specifies the anatomical location of: + specifies the anatomical location of the performance of the test in: + specifies the anatomical location of the tumor identified by: + specifies the severity of: + values are grouped by: + was the subject position during performance of the test in: + identifies the reference used in the genomic test in: + indicates heritability of the genetic variant in: + is an identifier for a published reference for the genetic variant in: + is an identifier for the copy, on one of two homologous chromosones, of the genetic variant in: + is an identifier for the genetic sequence of the genetic entity represented by: + is the chromosome that is the position of the result in: + is the clinical trial or treatment setting for: + is the date of occurrence: + is the date of occurrence for: + is the intended disease outcome for: + is the method of secondary analysis of results in: + is the numeric location, within a chromosone, genetic entity, or genetic sub-region, of the result in: + is the symbol for the genomic entity that is the position of the result in: + is the type of genomic entity that is the position of the result in: + is the genetic sub-location of the result in: + is the object of the observation in: + is an identifier for the evaluator with the role in: + is the severity of the toxicity in: + is a grouping of values in: + is the textual description of the intended dose regimen for: + is the reason for stopping administration of: + is the value of the property identified by: + is the name of the reference terminology for: + is the version of the reference terminology in: + + PredicateTermEnum: + description: >- + An enumeration that defines short variable relationship linking phrases for programming purposes from the COSMoS SDTM BC model + permissible_values: + ASSESSES: + CLASSIFIES: + DECODES: + DESCRIBES: + GROUPS: + GROUPS_BY: + IDENTIFIES: + IDENTIFIES_OBSERVATION: + IDENTIFIES_PRODUCT_IN: + IDENTIFIES_TUMOR_IN: + INDICATES: + IS_ATTRIBUTE_FOR: + IS_DECODED_BY: + IS_DERIVED_FROM: + IS_EPOCH_OF: + IS_GROUPED_BY: + IS_INDICATOR_FOR: + IS_ORIGINAL_TEXT_FOR: + IS_POSITION_FOR: + IS_REASON_FOR: + IS_RESULT_OF: + IS_SPECIMEN_TESTED_IN: + IS_SUBJECT_STATE_FOR: + IS_TIMING_FOR: + IS_UNIT_FOR: + PERFORMED: + PERFORMS: + QUALIFIES: + SPECIFIES: + IS_VALUE_OF: + IS_REFERENCE_TERMINOLOGY_FOR: + + DataProductLifecycleStatus: + description: >- + An enumeration that defines the lifecycle stages for a DataProduct + permissible_values: + Ideation: + Design: + Build: + Deploy: + Consume: + + StandardName: + description: >- + An enumeration that defines permissible values for standard names + permissible_values: + ADaMIG: + description: Analysis Data Model Implementation Guide + BIMO: + description: Bioresearch Monitoring + CDISC/NCI: + description: CDISC/NCI Controlled Terminology + SDTMIG: + description: Study Data Tabulation Model Implementation Guide + SDTMIG-AP: + description: SDTMIG Associated Persons + SDTMIG-MD: + description: SDTMIG Medical Devices + SENDIG: + description: Standard for Exchange of Non-clinical Data Implementation Guide + SENDIG-AR: + description: SENDIG Adverse Reactions + SENDIG-DART: + description: SENDIG Developmental and Reproductive Toxicology + SENDIG-GENETOX: + description: SENDIG Genetic Toxicology + + StandardType: + description: >- + An enumeration that defines permissible values for standard types + permissible_values: + CT: + description: Controlled Terminology + IG: + description: Implementation Guide + + PublishingSet: + description: >- + An enumeration that defines permissible values for publishing sets + permissible_values: + ADaM: + description: Analysis Data Model + CDASH: + description: Clinical Data Acquisition Standards Harmonization + DEFINE-XML: + description: Define-XML Standard + SDTM: + description: Study Data Tabulation Model + SEND: + description: Standard for Exchange of Non-clinical Data + + StandardStatus: + description: >- + An enumeration that defines permissible values for standard status + permissible_values: + DRAFT: + description: Draft version of the standard + FINAL: + description: Final version of the standard + + LogicalOperator: + description: >- + Logical operators for combining conditions in Boolean expressions. + For complex expressions, use the EXPRESSION value. + permissible_values: + EXPRESSION: + description: >- + Evaluate condition using expression. Default if expression is present. + AND: + description: >- + All child conditions must be true (all_of). Default if expression is not present. + OR: + description: >- + At least one child condition must be true (any_of). + NOT: + description: >- + Negates the child condition(s) (not_any_of). diff --git a/schema/define.yaml.source b/schema/define.yaml.source new file mode 100644 index 0000000..db12ca4 --- /dev/null +++ b/schema/define.yaml.source @@ -0,0 +1,4 @@ +repo: https://github.com/cdisc-org/DataExchange-DDS +path: model/define.yaml +ref: main +commit: 710f6df84fdfbdc11b369b69b68c3db294478781 diff --git a/scripts/fetch_define_schema.py b/scripts/fetch_define_schema.py new file mode 100644 index 0000000..6265d1c --- /dev/null +++ b/scripts/fetch_define_schema.py @@ -0,0 +1,79 @@ +"""Refresh the vendored define.yaml schema from CDISC DataExchange-DDS. + +The workbench validates generated Define-JSON output against the +LinkML schema published at: + + https://github.com/cdisc-org/DataExchange-DDS/blob/main/model/define.yaml + +That repository is the source of truth. This script re-downloads the +schema and overwrites the local copy at schema/define.yaml, along +with a schema/define.yaml.source file recording the commit it came +from so the vendored copy stays traceable. + +Usage: + python scripts/fetch_define_schema.py [--ref main] +""" + +import argparse +import logging +import urllib.error +import urllib.request +from pathlib import Path + +logger = logging.getLogger(__name__) + +REPO = "cdisc-org/DataExchange-DDS" +SCHEMA_PATH_IN_REPO = "model/define.yaml" +DEST_PATH = Path(__file__).resolve().parent.parent / "schema" / "define.yaml" + + +def _resolve_commit_sha(ref): + url = ( + f"https://api.github.com/repos/{REPO}/commits" + f"?path={SCHEMA_PATH_IN_REPO}&sha={ref}&per_page=1" + ) + with urllib.request.urlopen(url) as response: + import json + + commits = json.load(response) + return commits[0]["sha"] + + +def fetch_define_schema(ref="main"): + """Download define.yaml from DataExchange-DDS to schema/define.yaml.""" + sha = _resolve_commit_sha(ref) + raw_url = f"https://raw.githubusercontent.com/{REPO}/{sha}/{SCHEMA_PATH_IN_REPO}" + logger.info("Fetching %s", raw_url) + try: + with urllib.request.urlopen(raw_url) as response: + content = response.read() + except urllib.error.HTTPError as exc: + raise RuntimeError(f"Failed to download {raw_url}: {exc}") from exc + + DEST_PATH.parent.mkdir(parents=True, exist_ok=True) + DEST_PATH.write_bytes(content) + + source_note = DEST_PATH.with_suffix(".yaml.source") + source_note.write_text( + f"repo: https://github.com/{REPO}\n" + f"path: {SCHEMA_PATH_IN_REPO}\n" + f"ref: {ref}\n" + f"commit: {sha}\n" + ) + logger.info("Wrote %s (commit %s)", DEST_PATH, sha[:12]) + + +def main(): + logging.basicConfig(level=logging.INFO, format="%(message)s") + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--ref", + default="main", + help="Branch, tag, or commit to fetch define.yaml from (default: main)", + ) + args = parser.parse_args() + fetch_define_schema(ref=args.ref) + + +if __name__ == "__main__": + main() diff --git a/src/soa_builder.egg-info/PKG-INFO b/src/soa_builder.egg-info/PKG-INFO index 45a14af..acbc707 100644 --- a/src/soa_builder.egg-info/PKG-INFO +++ b/src/soa_builder.egg-info/PKG-INFO @@ -20,6 +20,7 @@ Requires-Dist: python-multipart>=0.0.9 Requires-Dist: jmespath>=1.1.0 Requires-Dist: cdisc-library-client>=0.1.6 Requires-Dist: mcp>=1.0.0 +Requires-Dist: python-docx>=1.1.0 Provides-Extra: dev Requires-Dist: pytest>=7.0.0; extra == "dev" Requires-Dist: pytest-cov>=4.0.0; extra == "dev" @@ -195,6 +196,57 @@ python -m usdm.generate_study_epochs 1 -o epochs.json --- +## MCP Server + +The workbench ships an [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that exposes SoA data as tools for Claude agents. This enables workflows such as "analyze this protocol PDF and populate the visit schedule" without copy-paste. + +### Setup + +The server is registered in `.mcp.json` and starts automatically when Claude Code loads the project. Confirm it is listed with `/mcp` in a Claude session. + +The `soa-mcp` command is installed alongside `soa-builder-web`: + +```bash +pip install -e . +soa-mcp # starts the MCP stdio server (for manual testing) +``` + +The server reads `SOA_BUILDER_DB` from the environment (falls back to `soa_builder_web.db`). No web server needs to be running — it accesses the SQLite database directly. + +### Available Tools (11) + +| Tool | Description | +|------|-------------| +| `list_soas` | List all Schedules of Activities | +| `create_soa` | Create a new SoA; returns `soa_id` | +| `get_soa` | Get SoA metadata by id | +| `list_visits` | List visit definitions ordered by `order_index` | +| `create_visit` | Add a visit (name, label, type) | +| `list_activities` | List activities ordered by `order_index` | +| `create_activity` | Add an activity (name, label, description) | +| `assign_instance_activity` | Mark an activity at a ScheduledActivityInstance; use `get_soa_matrix` for ids | +| `get_soa_matrix` | Return the visits × activities grid (instances, activities, cells) | +| `get_usdm_json` | Generate a USDM component as JSON (`full`, `encounters`, `activities`, `biomedical_concepts`, etc.) | +| `get_define_json` | Generate a Define-JSON document (requires `sdtmct` date and `CDISC_API_KEY`) | + +### Configuration + +The `.mcp.json` entry uses the absolute path to the venv console script: + +```json +"soa-workbench": { + "command": "/path/to/.venv/bin/soa-mcp", + "args": [], + "env": { + "SOA_BUILDER_DB": "/path/to/soa_builder_web.db" + } +} +``` + +Update the paths to match your environment after cloning. + +--- + ## Architecture Notes - **Database**: SQLite with WAL mode (production) or DELETE mode (tests) - **Test Isolation**: Tests use `soa_builder_web_tests.db` (set via `SOA_BUILDER_DB` env var) diff --git a/src/soa_builder.egg-info/SOURCES.txt b/src/soa_builder.egg-info/SOURCES.txt index 23a1a6f..9202cfb 100644 --- a/src/soa_builder.egg-info/SOURCES.txt +++ b/src/soa_builder.egg-info/SOURCES.txt @@ -35,6 +35,7 @@ src/soa_builder/web/routers/cdash_terminology.py src/soa_builder/web/routers/cells.py src/soa_builder/web/routers/concept_groups.py src/soa_builder/web/routers/condition_assignments.py +src/soa_builder/web/routers/dair.py src/soa_builder/web/routers/ddf_controlled_terminology.py src/soa_builder/web/routers/decision_instances.py src/soa_builder/web/routers/define_xml_terminology.py @@ -71,6 +72,7 @@ src/usdm/generate_bc_categories.py src/usdm/generate_bc_surrogates.py src/usdm/generate_biomedical_concept_properties.py src/usdm/generate_biomedical_concepts.py +src/usdm/generate_dair.py src/usdm/generate_define_json.py src/usdm/generate_elements.py src/usdm/generate_encounters.py @@ -93,6 +95,7 @@ src/usdm/generate_study_titles.py src/usdm/generate_usdm.py src/usdm/usdm_utils.py tests/test_bc_unassigned_report.py +tests/test_bcp_response_code_cleanup.py tests/test_bulk_import.py tests/test_categories_cache.py tests/test_categories_ui_force.py @@ -101,6 +104,7 @@ tests/test_code_uid_generation.py tests/test_concept_categories.py tests/test_concept_category_force_refresh.py tests/test_concepts_by_category_ui_force.py +tests/test_define_json_concepts.py tests/test_define_json_generator.py tests/test_element_audit_endpoint.py tests/test_element_id_generation.py @@ -113,6 +117,7 @@ tests/test_generate_endpoints.py tests/test_generate_extension_attributes.py tests/test_generate_objectives.py tests/test_instances_audit.py +tests/test_mcp_server.py tests/test_routers_activities.py tests/test_routers_activities_crf.py tests/test_routers_amendments.py @@ -120,6 +125,7 @@ tests/test_routers_arms.py tests/test_routers_audits.py tests/test_routers_bc_categories.py tests/test_routers_bc_surrogates.py +tests/test_routers_dair.py tests/test_routers_decision_instances.py tests/test_routers_delete_soa.py tests/test_routers_elements.py diff --git a/src/soa_builder.egg-info/requires.txt b/src/soa_builder.egg-info/requires.txt index c22a518..3b0d627 100644 --- a/src/soa_builder.egg-info/requires.txt +++ b/src/soa_builder.egg-info/requires.txt @@ -11,6 +11,7 @@ python-multipart>=0.0.9 jmespath>=1.1.0 cdisc-library-client>=0.1.6 mcp>=1.0.0 +python-docx>=1.1.0 [dev] pytest>=7.0.0 diff --git a/src/soa_builder/web/app.py b/src/soa_builder/web/app.py index 7c079cb..26d8b46 100644 --- a/src/soa_builder/web/app.py +++ b/src/soa_builder/web/app.py @@ -72,6 +72,9 @@ _migrate_add_footnote_table, _migrate_add_footnote_audit_table, _migrate_matrix_cells_add_superscript, + _migrate_activity_add_superscript, + _migrate_epoch_add_superscript, + _migrate_visit_add_superscript, _migrate_add_bc_surrogate_table, _migrate_add_activity_surrogate_table, _migrate_add_bc_surrogate_audit_table, @@ -140,6 +143,8 @@ _migrate_add_study_identifier_table, _migrate_add_study_identifier_audit_table, _migrate_soa_add_tool_extension_uids, + _migrate_add_element_intervention_table, + _migrate_backfill_crf_href_latest_version, ) from .routers import activities as activities_router from .routers import arms as arms_router @@ -162,6 +167,7 @@ from .routers import instances as instances_router from .routers import usdm_json as usdm_json_router from .routers import tdd as tdd_router +from .routers import dair as dair_router from .routers import decision_instances as decision_instances_router from .routers import condition_assignments as condition_assignments_router from .routers import footnotes as footnotes_router @@ -196,7 +202,9 @@ ) from .routers.roles import _get_role_type_options, _list_roles from .audit import _record_element_audit - +from usdm.generate_biomedical_concept_properties import ( + populate_biomedical_concept_properties_for_all_soas as _bcp_backfill, +) # Avoid binding visit helpers directly to allow fresh reloads in tests from .schemas import ( @@ -270,6 +278,8 @@ def _configure_logging(): # CRF specializations cache (full list) _crf_specializations_cache = {"data": None, "fetched_at": 0} _CRF_SPECIALIZATIONS_CACHE_TTL = _CONCEPT_CACHE_TTL +# Per-code CRF specializations cache: {code: (fetched_at, [results])} +_crf_specializations_by_code_cache: dict[str, tuple[float, list]] = {} # Category-specific biomedical concepts cache (per category key) _category_concepts_cache: dict[str, dict] = {} _CATEGORY_CONCEPTS_CACHE_TTL = _CONCEPT_CACHE_TTL @@ -329,10 +339,15 @@ def _configure_logging(): _migrate_biomedical_concept_audit() _migrate_backfill_biomedical_concept_codes() _migrate_repoint_stale_bc_code_chains() +if os.environ.get("SOA_EAGER_BCP_POPULATION", "1").strip().lower() not in ("0", "false"): + _bcp_backfill() _migrate_add_soa_id_indexes() _migrate_add_footnote_table() _migrate_add_footnote_audit_table() _migrate_matrix_cells_add_superscript() +_migrate_activity_add_superscript() +_migrate_epoch_add_superscript() +_migrate_visit_add_superscript() _migrate_add_bc_surrogate_table() _migrate_add_activity_surrogate_table() _migrate_add_bc_surrogate_audit_table() @@ -401,6 +416,8 @@ def _configure_logging(): _migrate_add_study_identifier_table() _migrate_add_study_identifier_audit_table() _migrate_soa_add_tool_extension_uids() +_migrate_add_element_intervention_table() +_migrate_backfill_crf_href_latest_version() # Include routers @@ -420,6 +437,7 @@ def _configure_logging(): app.include_router(cells_router.router) app.include_router(usdm_json_router.router) app.include_router(tdd_router.router) +app.include_router(dair_router.router) app.include_router(decision_instances_router.router) app.include_router(condition_assignments_router.router) app.include_router(footnotes_router.router) @@ -645,12 +663,15 @@ def _fetch_matrix(soa_id: int): ) for r in cur.fetchall() ] - # Activities: include optional label/description if schema supports them + # Activities: include optional label/description/superscript if schema supports them cur.execute("PRAGMA table_info(activity)") act_cols = {r[1] for r in cur.fetchall()} + has_superscript = "superscript" in act_cols if "label" in act_cols and "description" in act_cols: + sup_select = ",superscript" if has_superscript else "" cur.execute( - "SELECT id,name,order_index,activity_uid,label,description FROM activity WHERE soa_id=? ORDER BY order_index", + f"SELECT id,name,order_index,activity_uid,label,description{sup_select}" + " FROM activity WHERE soa_id=? ORDER BY order_index", (soa_id,), ) activities = [ @@ -661,6 +682,7 @@ def _fetch_matrix(soa_id: int): activity_uid=r[3], label=r[4], description=r[5], + superscript=r[6] if has_superscript else None, ) for r in cur.fetchall() ] @@ -677,6 +699,7 @@ def _fetch_matrix(soa_id: int): activity_uid=r[3], label=None, description=None, + superscript=None, ) for r in cur.fetchall() ] @@ -1387,12 +1410,18 @@ def _normalize_href(h: Optional[str]) -> Optional[str]: return packages -def fetch_crf_specializations(force: bool = False): +def fetch_crf_specializations(force: bool = False, code: Optional[str] = None): """Return list of CRF specializations as [{'title':..., 'href':...}]. - Fetches the latest package from the CRF packages endpoint, then - retrieves specializations for that package. Sorted alphabetically - by title. Cached with the standard SOA_BUILDER_CACHE_TTL TTL. + When `code` is None: + - Fetch the full "latest version" CRF specializations list. + - Cache the normalized list in _crf_specializations_cache. + + When `code` is provided (e.g. 'C105585'): + - Call the generic dataset specializations endpoint with + ?biomedicalconcept={code}, which returns a HAL-style document. + - Extract the CRF subset from _links.datasetSpecializations.crf. + - Do NOT use or update the main cache (code-specific result only). """ now = time.time() base_prefix = CDISC_CRF_API_BASE_URL @@ -1406,7 +1435,85 @@ def _normalize_href(h): return base_prefix + h return base_prefix + "/" + h - # Return cached result if still fresh + # --------- code-specific branch (use generic endpoint) ---------- + if code: + # Return cached result if still fresh + cached = _crf_specializations_by_code_cache.get(code) + if ( + not force + and cached is not None + and (now - cached[0]) < _CRF_SPECIALIZATIONS_CACHE_TTL + ): + return cached[1] + + url = ( + f"{base_prefix}/mdr/specializations/datasetspecializations" + f"?biomedicalconcept={code}" + ) + headers = {"Accept": "application/json"} + api_key = _get_cdisc_api_key() + subscription_key = os.environ.get("CDISC_SUBSCRIPTION_KEY") or api_key + if subscription_key: + headers["Ocp-Apim-Subscription-Key"] = subscription_key + if api_key: + headers["Authorization"] = f"Bearer {api_key}" + headers["api-key"] = api_key + + try: + resp = requests.get(url, headers=headers, timeout=_HTTP_TIMEOUT) + _crf_specializations_cache["last_status"] = resp.status_code + _crf_specializations_cache["last_url"] = url + _crf_specializations_cache["last_error"] = None + if resp.status_code != 200: + _crf_specializations_cache["last_error"] = f"HTTP {resp.status_code}" + logger.warning( + "CRF specializations by BC code fetch HTTP %s for code=%s", + resp.status_code, + code, + ) + return [] + try: + data = resp.json() + except ValueError: + _crf_specializations_cache["last_error"] = "200 but non-JSON response" + logger.warning( + "CRF specializations by BC code non-JSON body for code=%s", code + ) + return [] + + # Expect HAL-style: _links.datasetSpecializations.crf is list of links + packages: list[dict] = [] + if ( + isinstance(data, dict) + and "_links" in data + and isinstance(data["_links"], dict) + ): + ds = data["_links"].get("datasetSpecializations") + if isinstance(ds, dict): + crf_links = ds.get("crf") + if isinstance(crf_links, list): + for link in crf_links: + if not isinstance(link, dict): + continue + href = _normalize_href(link.get("href")) + title = link.get("title") or href + packages.append({"title": title, "href": href}) + packages.sort(key=lambda p: p.get("title", "").lower()) + logger.info( + "Fetched %d CRF specializations for biomedical concept %s", + len(packages), + code, + ) + _crf_specializations_by_code_cache[code] = (now, packages) + return packages + except Exception as e: + logger.error( + "CRF specializations by BC code fetch error for %s: %s", code, e + ) + _crf_specializations_cache["last_error"] = str(e) + return [] + + # Cache only applies to full list if ( not force and _crf_specializations_cache["data"] is not None @@ -1451,71 +1558,14 @@ def _normalize_href(h): headers["Authorization"] = f"Bearer {api_key}" headers["api-key"] = api_key - # Step 1: fetch package list to determine the latest package href - latest_pkg_href = None - try: - pkg_url = f"{base_prefix}/mdr/specializations/crf/packages" - pkg_resp = requests.get(pkg_url, headers=headers, timeout=_HTTP_TIMEOUT) - _crf_specializations_cache["last_status"] = pkg_resp.status_code - _crf_specializations_cache["last_url"] = pkg_url - _crf_specializations_cache["last_error"] = None - if pkg_resp.status_code == 200: - try: - pkg_data = pkg_resp.json() - except ValueError: - pkg_data = None - # Collect hrefs only — never titles, which aren't valid URL segments - pkg_hrefs = [] - if isinstance(pkg_data, dict) and "_links" in pkg_data: - links = pkg_data["_links"] - for key in ("packages", "crf", "items"): - val = links.get(key) - if isinstance(val, list): - for lnk in val: - if isinstance(lnk, dict): - h = lnk.get("href") or "" - if h: - pkg_hrefs.append(h) - break - elif isinstance(pkg_data, list): - for item in pkg_data: - if isinstance(item, dict): - h = item.get("href") or item.get("packageDate") or "" - if h: - pkg_hrefs.append(str(h)) - if pkg_hrefs: - # Sort descending — date-based hrefs sort lexicographically - pkg_hrefs.sort(reverse=True) - latest_pkg_href = pkg_hrefs[0] - else: - _crf_specializations_cache["last_error"] = ( - f"Packages HTTP {pkg_resp.status_code}: {pkg_resp.text[:180]}" - ) - except Exception as e: - logger.error("CRF packages fetch error: %s", e) - _crf_specializations_cache["last_error"] = str(e) - _crf_specializations_cache.update(data=[], fetched_at=now) - return [] - - if not latest_pkg_href: - logger.warning("CRF packages list returned no package hrefs") - _crf_specializations_cache.update(data=[], fetched_at=now) - return [] - - # Step 2: fetch specializations for the latest package. - # latest_pkg_href may already include "/specializations" as the terminal - # segment (the API returns it that way). Strip it before appending so we - # never produce ".../specializations/specializations". - norm_href = _normalize_href(latest_pkg_href) or latest_pkg_href - base_pkg = norm_href.rstrip("/") - if base_pkg.endswith("/specializations"): - base_pkg = base_pkg[: -len("/specializations")] - spec_url = base_pkg + "/specializations" - packages = [] + # Remote full-list branch: latest-version CRF specializations + url = f"{base_prefix}/mdr/specializations/crf/specializations" + packages: list[dict] = [] try: - resp = requests.get(spec_url, headers=headers, timeout=_HTTP_TIMEOUT) + resp = requests.get(url, headers=headers, timeout=_HTTP_TIMEOUT) _crf_specializations_cache["last_status"] = resp.status_code - _crf_specializations_cache["last_url"] = spec_url + _crf_specializations_cache["last_url"] = url + _crf_specializations_cache["last_error"] = None if resp.status_code == 200: try: data = resp.json() @@ -1557,11 +1607,10 @@ def _normalize_href(h): _crf_specializations_cache["last_error"] = str(e) packages.sort(key=lambda p: (p.get("title") or "").lower()) - _crf_specializations_cache.update(data=packages, fetched_at=now, spec_url=spec_url) + _crf_specializations_cache.update(data=packages, fetched_at=now) logger.info( - "Fetched %d CRF specializations from remote API (package_href=%s)", + "Fetched %d CRF specializations from remote API (latest version list)", len(packages), - latest_pkg_href, ) return packages @@ -1876,8 +1925,8 @@ def _fetch_enriched_instances(soa_id: int): cur.execute( """ SELECT i.id,i.name,i.instance_uid,i.label,i.member_of_timeline, - v.name AS encounter_name,v.label AS encounter_label, - e.name AS epoch_name,e.epoch_label as epoch_label, + v.id AS encounter_id,v.name AS encounter_name,v.label AS encounter_label,v.superscript AS encounter_superscript, + e.id AS epoch_id,e.name AS epoch_name,e.epoch_label as epoch_label,e.superscript AS epoch_superscript, tm.window_label,tm.label AS timing_label,tm.name AS timing_name,tm.value AS study_day FROM instances i LEFT JOIN visit v ON v.encounter_uid = i.encounter_uid AND v.soa_id = i.soa_id @@ -1895,14 +1944,18 @@ def _fetch_enriched_instances(soa_id: int): "instance_uid": r[2], "label": r[3], "member_of_timeline": r[4], - "encounter_name": r[5], - "encounter_label": r[6], - "epoch_name": r[7], - "epoch_label": r[8], - "window_label": r[9], - "timing_label": r[10], - "timing_name": r[11], - "study_day": r[12], + "encounter_id": r[5], + "encounter_name": r[6], + "encounter_label": r[7], + "encounter_superscript": r[8], + "epoch_id": r[9], + "epoch_name": r[10], + "epoch_label": r[11], + "epoch_superscript": r[12], + "window_label": r[13], + "timing_label": r[14], + "timing_name": r[15], + "study_day": r[16], } for r in cur.fetchall() ] @@ -3153,6 +3206,74 @@ def _render_cell_td( ) +def _render_activity_td( + soa_id: int, + activity_id: int, + display_name: str, + superscript: str | None, +) -> str: + """Build the HTML for an activity row header, including superscript and edit button.""" + soa_id_safe = _html.escape(str(soa_id), quote=True) + activity_id_safe = _html.escape(str(activity_id), quote=True) + name_safe = _html.escape(display_name or "") + sup_html = f"{_html.escape(superscript)}" if superscript else "" + edit_btn = ( + f'' + ) + return f"{name_safe}{sup_html}{edit_btn}" + + +def _render_encounter_th( + soa_id: int, + encounter_id: int, + display_name: str, + superscript: str | None, +) -> str: + """Build the HTML for an encounter column header, including superscript and edit button.""" + soa_id_safe = _html.escape(str(soa_id), quote=True) + encounter_id_safe = _html.escape(str(encounter_id), quote=True) + name_safe = _html.escape(display_name or "") + sup_html = f"{_html.escape(superscript)}" if superscript else "" + edit_btn = ( + f'' + ) + return ( + f'' + f"{name_safe}{sup_html}{edit_btn}" + ) + + +def _render_epoch_th( + soa_id: int, + epoch_id: int, + display_value: str, + colspan: int, + superscript: str | None, +) -> str: + """Build the HTML for a (possibly multi-column) epoch header, including superscript and edit button.""" + soa_id_safe = _html.escape(str(soa_id), quote=True) + epoch_id_safe = _html.escape(str(epoch_id), quote=True) + colspan_safe = _html.escape(str(colspan), quote=True) + value_safe = _html.escape(display_value or "") + sup_html = f"{_html.escape(superscript)}" if superscript else "" + edit_btn = ( + f'' + ) + return ( + f'' + f"{value_safe}{sup_html}{edit_btn}" + ) + + @app.post("/ui/soa/{soa_id}/toggle_cell_instance", response_class=HTMLResponse) def ui_toggle_cell_instance( request: Request, @@ -4261,6 +4382,17 @@ def ui_help(request: Request): ) +# UI endpoint for the USDM logical model explorer +@app.get("/ui/usdm-model-explorer", response_class=HTMLResponse) +def ui_usdm_model_explorer(request: Request): + """Render the USDM logical model explorer page.""" + return templates.TemplateResponse( + request, + "usdm_model_explorer.html", + {}, + ) + + # UI endpoint for adding an Activity @app.post("/ui/soa/{soa_id}/add_activity", response_class=HTMLResponse) def ui_add_activity(request: Request, soa_id: int, name: str = Form(...)): @@ -4342,6 +4474,7 @@ def ui_create_soa( def ui_update_meta( request: Request, soa_id: int, + name: Optional[str] = Form(None), study_id: Optional[str] = Form(None), study_label: Optional[str] = Form(None), study_description: Optional[str] = Form(None), @@ -4376,8 +4509,10 @@ def ui_update_meta( % soa_id ) cur.execute( - "UPDATE soa SET study_id=?, study_label=?, study_description=? WHERE id=?", + "UPDATE soa SET name=?, study_id=?, study_label=?," + " study_description=? WHERE id=?", ( + (name or "").strip() or None, new_study_id, (study_label or "").strip() or None, (study_description or "").strip() or None, @@ -4699,7 +4834,9 @@ def ui_edit(request: Request, soa_id: int): cur_inst.execute( """ SELECT i.id,i.name,i.instance_uid,i.label,i.member_of_timeline,st.name AS timeline_name,st.label AS timeline_label, - v.name AS encounter_name,v.label AS encounter_label,e.name AS epoch_name,e.epoch_label as epoch_label,tm.window_label,tm.label AS timing_label,tm.name AS timing_name,tm.value AS study_day + v.id AS encounter_id,v.name AS encounter_name,v.label AS encounter_label,v.superscript AS encounter_superscript, + e.id AS epoch_id,e.name AS epoch_name,e.epoch_label as epoch_label,e.superscript AS epoch_superscript, + tm.window_label,tm.label AS timing_label,tm.name AS timing_name,tm.value AS study_day FROM instances i LEFT JOIN schedule_timelines st ON st.schedule_timeline_uid = i.member_of_timeline AND st.soa_id = i.soa_id LEFT JOIN visit v ON v.encounter_uid = i.encounter_uid AND v.soa_id = i.soa_id @@ -4719,14 +4856,18 @@ def ui_edit(request: Request, soa_id: int): "member_of_timeline": r[4], "timeline_name": r[5], "timeline_label": r[6], - "encounter_name": r[7], - "encounter_label": r[8], - "epoch_name": r[9], - "epoch_label": r[10], - "window_label": r[11], - "timing_label": r[12], - "timing_name": r[13], - "study_day": iso_duration_to_days(r[14]), + "encounter_id": r[7], + "encounter_name": r[8], + "encounter_label": r[9], + "encounter_superscript": r[10], + "epoch_id": r[11], + "epoch_name": r[12], + "epoch_label": r[13], + "epoch_superscript": r[14], + "window_label": r[15], + "timing_label": r[16], + "timing_name": r[17], + "study_day": iso_duration_to_days(r[18]), } for r in cur_inst.fetchall() ] @@ -5129,15 +5270,10 @@ def ui_crf_specializations_list(request: Request): last_error = _crf_specializations_cache.get("last_error") last_url = _crf_specializations_cache.get("last_url") # Extract the /mdr/... path from the resolved specializations URL for display - spec_url = _crf_specializations_cache.get("spec_url") or "" from urllib.parse import urlparse as _up - _p = _up(spec_url) - spec_path = ( - _p.path - if spec_url - else "/mdr/specializations/crf/packages/{package}/specializations" - ) + _p = _up(last_url or "") + spec_path = _p.path or "/mdr/specializations/crf/specializations" return templates.TemplateResponse( request, "crf_specializations.html", @@ -6200,6 +6336,334 @@ def ui_cell_superscript_view( ) +@app.get( + "/ui/soa/{soa_id}/activity_superscript_edit/{activity_id}", + response_class=HTMLResponse, +) +def ui_activity_superscript_edit( + request: Request, + soa_id: int, + activity_id: int, +): + """Return edit-mode for activity superscript inline editing.""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT superscript FROM activity WHERE soa_id=? AND id=?", + (soa_id, activity_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Activity not found") + sup_val = _html.escape(row[0] or "", quote=True) + html = ( + f'' + f'
' + f'' + f'' + f"
" + f'' + f"" + ) + return HTMLResponse(html) + + +@app.post( + "/ui/soa/{soa_id}/activity_superscript/{activity_id}", + response_class=HTMLResponse, +) +def ui_activity_superscript_save( + request: Request, + soa_id: int, + activity_id: int, + superscript: Optional[str] = Form(None), +): + """Save superscript value for an activity and return rendered .""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + # Normalise empty string to NULL + sup_val = superscript.strip() if superscript else None + conn = _connect() + cur = conn.cursor() + cur.execute( + "UPDATE activity SET superscript=? WHERE soa_id=? AND id=?", + (sup_val, soa_id, activity_id), + ) + if cur.rowcount == 0: + conn.close() + raise HTTPException(404, "Activity not found") + cur.execute( + "SELECT name, label, superscript FROM activity WHERE soa_id=? AND id=?", + (soa_id, activity_id), + ) + row = cur.fetchone() + conn.commit() + conn.close() + name, label, sup_val_db = row + display_name = label or name + return HTMLResponse( + _render_activity_td(soa_id, activity_id, display_name, sup_val_db) + ) + + +@app.get( + "/ui/soa/{soa_id}/activity_superscript_view/{activity_id}", + response_class=HTMLResponse, +) +def ui_activity_superscript_view( + request: Request, + soa_id: int, + activity_id: int, +): + """Return rendered (view-mode) — used for cancel.""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT name, label, superscript FROM activity WHERE soa_id=? AND id=?", + (soa_id, activity_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Activity not found") + name, label, sup_val = row + display_name = label or name + return HTMLResponse(_render_activity_td(soa_id, activity_id, display_name, sup_val)) + + +@app.get( + "/ui/soa/{soa_id}/encounter_superscript_edit/{encounter_id}", + response_class=HTMLResponse, +) +def ui_encounter_superscript_edit( + request: Request, + soa_id: int, + encounter_id: int, +): + """Return edit-mode for encounter superscript inline editing.""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT superscript FROM visit WHERE soa_id=? AND id=?", + (soa_id, encounter_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Encounter not found") + sup_val = _html.escape(row[0] or "", quote=True) + html = ( + f'' + f'
' + f'' + f'' + f"
" + f'' + f"" + ) + return HTMLResponse(html) + + +@app.post( + "/ui/soa/{soa_id}/encounter_superscript/{encounter_id}", + response_class=HTMLResponse, +) +def ui_encounter_superscript_save( + request: Request, + soa_id: int, + encounter_id: int, + superscript: Optional[str] = Form(None), +): + """Save superscript value for an encounter (visit) and return rendered .""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + sup_val = superscript.strip() if superscript else None + conn = _connect() + cur = conn.cursor() + cur.execute( + "UPDATE visit SET superscript=? WHERE soa_id=? AND id=?", + (sup_val, soa_id, encounter_id), + ) + if cur.rowcount == 0: + conn.close() + raise HTTPException(404, "Encounter not found") + cur.execute( + "SELECT name, label, superscript FROM visit WHERE soa_id=? AND id=?", + (soa_id, encounter_id), + ) + row = cur.fetchone() + conn.commit() + conn.close() + name, label, sup_val_db = row + display_name = label or name + return HTMLResponse( + _render_encounter_th(soa_id, encounter_id, display_name, sup_val_db) + ) + + +@app.get( + "/ui/soa/{soa_id}/encounter_superscript_view/{encounter_id}", + response_class=HTMLResponse, +) +def ui_encounter_superscript_view( + request: Request, + soa_id: int, + encounter_id: int, +): + """Return rendered (view-mode) — used for cancel.""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT name, label, superscript FROM visit WHERE soa_id=? AND id=?", + (soa_id, encounter_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Encounter not found") + name, label, sup_val = row + display_name = label or name + return HTMLResponse( + _render_encounter_th(soa_id, encounter_id, display_name, sup_val) + ) + + +@app.get( + "/ui/soa/{soa_id}/epoch_superscript_edit/{epoch_id}", + response_class=HTMLResponse, +) +def ui_epoch_superscript_edit( + request: Request, + soa_id: int, + epoch_id: int, + colspan: int = 1, +): + """Return edit-mode for epoch superscript inline editing. + + ``colspan`` is a render-time pass-through (how many matrix columns + the epoch header currently spans) — it is not stored in the + database and must be preserved across the edit/save/view swaps so + the table stays aligned. + """ + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT superscript FROM epoch WHERE soa_id=? AND id=?", + (soa_id, epoch_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Epoch not found") + sup_val = _html.escape(row[0] or "", quote=True) + colspan_safe = _html.escape(str(colspan), quote=True) + html = ( + f'' + f'
' + f'' + f'' + f'' + f"
" + f'' + f"" + ) + return HTMLResponse(html) + + +@app.post( + "/ui/soa/{soa_id}/epoch_superscript/{epoch_id}", + response_class=HTMLResponse, +) +def ui_epoch_superscript_save( + request: Request, + soa_id: int, + epoch_id: int, + superscript: Optional[str] = Form(None), + colspan: int = Form(1), +): + """Save superscript value for an epoch and return rendered .""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + sup_val = superscript.strip() if superscript else None + conn = _connect() + cur = conn.cursor() + cur.execute( + "UPDATE epoch SET superscript=? WHERE soa_id=? AND id=?", + (sup_val, soa_id, epoch_id), + ) + if cur.rowcount == 0: + conn.close() + raise HTTPException(404, "Epoch not found") + cur.execute( + "SELECT epoch_label, name, superscript FROM epoch WHERE soa_id=? AND id=?", + (soa_id, epoch_id), + ) + row = cur.fetchone() + conn.commit() + conn.close() + epoch_label, name, sup_val_db = row + display_value = epoch_label or name + return HTMLResponse( + _render_epoch_th(soa_id, epoch_id, display_value, colspan, sup_val_db) + ) + + +@app.get( + "/ui/soa/{soa_id}/epoch_superscript_view/{epoch_id}", + response_class=HTMLResponse, +) +def ui_epoch_superscript_view( + request: Request, + soa_id: int, + epoch_id: int, + colspan: int = 1, +): + """Return rendered (view-mode) — used for cancel.""" + if not soa_exists(soa_id): + raise HTTPException(404, "SOA not found") + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT epoch_label, name, superscript FROM epoch WHERE soa_id=? AND id=?", + (soa_id, epoch_id), + ) + row = cur.fetchone() + conn.close() + if not row: + raise HTTPException(404, "Epoch not found") + epoch_label, name, sup_val = row + display_value = epoch_label or name + return HTMLResponse( + _render_epoch_th(soa_id, epoch_id, display_value, colspan, sup_val) + ) + + # UI endpoint for associating a Transition Start Rule with Visit/Encounter (visit.transitionStartRule) @app.post( "/ui/soa/{soa_id}/set_visit_transition_start_rule", response_class=HTMLResponse diff --git a/src/soa_builder/web/codelist_config.py b/src/soa_builder/web/codelist_config.py new file mode 100644 index 0000000..4b95960 --- /dev/null +++ b/src/soa_builder/web/codelist_config.py @@ -0,0 +1,52 @@ +"""Configurable CDISC CT codelist codes for UI dropdowns. + +Each constant identifies the CDISC controlled terminology codelist +whose terms populate a specific dropdown in the UI. Override any of +these via the corresponding ``CODELIST_*`` variable in ``config.env`` +to point that dropdown at an alternate/custom codelist. + +This module calls ``load_dotenv("config.env")`` itself (mirroring +``db.py``/``migrate_database.py``) so the configured values are +available regardless of module import order relative to +``app.py``'s own ``load_dotenv`` call. +""" + +import os + +from dotenv import load_dotenv + +load_dotenv("config.env") + +EPOCH_TYPE_CODELIST = os.environ.get("CODELIST_EPOCH_TYPE", "C99079") +ARM_TYPE_CODELIST = os.environ.get("CODELIST_ARM_TYPE", "C174222") +ARM_DATA_ORIGIN_TYPE_CODELIST = os.environ.get( + "CODELIST_ARM_DATA_ORIGIN_TYPE", "C188727" +) +ROLE_TYPE_CODELIST = os.environ.get("CODELIST_ROLE_TYPE", "C215480") +ORGANIZATION_TYPE_CODELIST = os.environ.get("CODELIST_ORGANIZATION_TYPE", "C215480") +AMENDMENT_REASON_CODELIST = os.environ.get("CODELIST_AMENDMENT_REASON", "C207415") +AMENDMENT_IMPACT_TYPE_CODELIST = os.environ.get( + "CODELIST_AMENDMENT_IMPACT_TYPE", "C215481" +) +GEOGRAPHIC_SCOPE_TYPE_CODELIST = os.environ.get( + "CODELIST_GEOGRAPHIC_SCOPE_TYPE", "C207412" +) +GOVERNANCE_DATE_TYPE_CODELIST = os.environ.get( + "CODELIST_GOVERNANCE_DATE_TYPE", "C207413" +) +STUDY_TITLE_TYPE_CODELIST = os.environ.get("CODELIST_STUDY_TITLE_TYPE", "C207419") +INTERVENTION_ROLE_CODELIST = os.environ.get("CODELIST_INTERVENTION_ROLE", "C207417") +INTERVENTION_TYPE_CODELIST = os.environ.get("CODELIST_INTERVENTION_TYPE", "C99078") +INTERVENTION_UNIT_CODELIST = os.environ.get("CODELIST_INTERVENTION_UNIT", "C66781") +OBJECTIVE_LEVEL_CODELIST = os.environ.get("CODELIST_OBJECTIVE_LEVEL", "C188725") +ENDPOINT_LEVEL_CODELIST = os.environ.get("CODELIST_ENDPOINT_LEVEL", "C188726") +ENCOUNTER_ENVIRONMENTAL_SETTING_CODELIST = os.environ.get( + "CODELIST_ENCOUNTER_ENVIRONMENTAL_SETTING", "C127262" +) +ENCOUNTER_CONTACT_MODE_CODELIST = os.environ.get( + "CODELIST_ENCOUNTER_CONTACT_MODE", "C171445" +) +TIMING_TYPE_CODELIST = os.environ.get("CODELIST_TIMING_TYPE", "C201264") +TIMING_RELATIVE_TO_FROM_CODELIST = os.environ.get( + "CODELIST_TIMING_RELATIVE_TO_FROM", "C201265" +) diff --git a/src/soa_builder/web/migrate_database.py b/src/soa_builder/web/migrate_database.py index 5c1183b..ebaa923 100644 --- a/src/soa_builder/web/migrate_database.py +++ b/src/soa_builder/web/migrate_database.py @@ -2,6 +2,7 @@ import logging import os import pathlib +import re from datetime import datetime, timezone from typing import Dict, Optional @@ -1435,6 +1436,51 @@ def _migrate_matrix_cells_add_superscript(): logger.warning("matrix_cells superscript migration failed: %s", e) +def _migrate_activity_add_superscript(): + """Add superscript TEXT column to activity if missing.""" + try: + conn = _connect() + cur = conn.cursor() + cur.execute("PRAGMA table_info(activity)") + if "superscript" not in {r[1] for r in cur.fetchall()}: + cur.execute("ALTER TABLE activity ADD COLUMN superscript TEXT") + conn.commit() + logger.info("Added superscript column to activity") + conn.close() + except Exception as e: + logger.warning("activity superscript migration failed: %s", e) + + +def _migrate_epoch_add_superscript(): + """Add superscript TEXT column to epoch if missing.""" + try: + conn = _connect() + cur = conn.cursor() + cur.execute("PRAGMA table_info(epoch)") + if "superscript" not in {r[1] for r in cur.fetchall()}: + cur.execute("ALTER TABLE epoch ADD COLUMN superscript TEXT") + conn.commit() + logger.info("Added superscript column to epoch") + conn.close() + except Exception as e: + logger.warning("epoch superscript migration failed: %s", e) + + +def _migrate_visit_add_superscript(): + """Add superscript TEXT column to visit if missing.""" + try: + conn = _connect() + cur = conn.cursor() + cur.execute("PRAGMA table_info(visit)") + if "superscript" not in {r[1] for r in cur.fetchall()}: + cur.execute("ALTER TABLE visit ADD COLUMN superscript TEXT") + conn.commit() + logger.info("Added superscript column to visit") + conn.close() + except Exception as e: + logger.warning("visit superscript migration failed: %s", e) + + def _migrate_add_bc_surrogate_table(): """Create biomedical_concept_surrogate table if missing.""" try: @@ -3203,6 +3249,28 @@ def _migrate_add_study_identifier_audit_table(): logger.warning("_migrate_add_study_identifier_audit_table failed: %s", e) +def _migrate_add_element_intervention_table(): + """Create element_intervention junction table for StudyElement ↔ StudyIntervention.""" + try: + conn = _connect() + cur = conn.cursor() + cur.execute( + "CREATE TABLE IF NOT EXISTS element_intervention (" + "id INTEGER PRIMARY KEY AUTOINCREMENT," + "soa_id INTEGER NOT NULL," + "element_id INTEGER NOT NULL," + "intervention_uid TEXT NOT NULL," + "order_index INTEGER," + "UNIQUE(soa_id, element_id, intervention_uid)" + ")" + ) + conn.commit() + conn.close() + logger.info("_migrate_add_element_intervention_table complete") + except Exception as e: + logger.warning("_migrate_add_element_intervention_table failed: %s", e) + + def _migrate_soa_add_tool_extension_uids(): """Create soa_tool_extension table for stable per-SOA USDM tool UIDs. @@ -3250,3 +3318,45 @@ def _migrate_soa_add_tool_extension_uids(): conn.close() except Exception as e: logger.warning("_migrate_soa_add_tool_extension_uids failed: %s", e) + + +def _migrate_backfill_crf_href_latest_version(): + """Rewrite activity_concept_crf.crf_href from the dated-package + format to the latest-version format, e.g.: + /mdr/specializations/crf/packages/2026-06-30/specializations/TEMP + -> /mdr/specializations/crf/specializations/TEMP + Idempotent: rows already in the new format are left untouched.""" + pattern = re.compile(r"/mdr/specializations/crf/packages/[^/]+/specializations/") + replacement = "/mdr/specializations/crf/specializations/" + try: + conn = _connect() + cur = conn.cursor() + cur.execute( + "SELECT name FROM sqlite_master WHERE type='table'" + " AND name='activity_concept_crf'" + ) + if not cur.fetchone(): + conn.close() + return + cur.execute( + "SELECT id, crf_href FROM activity_concept_crf" + " WHERE crf_href LIKE '%/mdr/specializations/crf/packages/%'" + ) + rows = cur.fetchall() + updated = 0 + for row_id, href in rows: + new_href = pattern.sub(replacement, href) + if new_href != href: + cur.execute( + "UPDATE activity_concept_crf SET crf_href=? WHERE id=?", + (new_href, row_id), + ) + updated += 1 + if updated: + conn.commit() + logger.info( + "_migrate_backfill_crf_href_latest_version updated %d rows", updated + ) + conn.close() + except Exception as e: + logger.warning("_migrate_backfill_crf_href_latest_version failed: %s", e) diff --git a/src/soa_builder/web/routers/_freeze_helpers.py b/src/soa_builder/web/routers/_freeze_helpers.py index 1ce7003..5bd3853 100644 --- a/src/soa_builder/web/routers/_freeze_helpers.py +++ b/src/soa_builder/web/routers/_freeze_helpers.py @@ -293,8 +293,13 @@ def _capture_biomedical_concepts(cur, soa_id: int) -> list: if not _table_has_columns(cur, "biomedical_concept", ("biomedical_concept_uid",)): return [] cur.execute( - "SELECT biomedical_concept_uid,name,label,code" - " FROM biomedical_concept WHERE soa_id=? ORDER BY id", + "SELECT bc.biomedical_concept_uid, bc.name, bc.label, bc.code, c.code" + " FROM biomedical_concept bc" + " LEFT JOIN alias_code a" + " ON bc.code = a.alias_code_uid AND bc.soa_id = a.soa_id" + " LEFT JOIN code c" + " ON a.standard_code = c.code_uid AND a.soa_id = c.soa_id" + " WHERE bc.soa_id=? ORDER BY bc.id", (soa_id,), ) return [ @@ -303,6 +308,7 @@ def _capture_biomedical_concepts(cur, soa_id: int) -> list: "name": r[1], "label": r[2], "code": r[3], + "concept_id": r[4], } for r in cur.fetchall() ] @@ -757,13 +763,24 @@ def _get_concept_list(m, key): title_changes.append( {"code": code, "old_title": l_title, "new_title": r_title} ) + titles = { + c["code"]: c.get("title") or c["code"] + for c in la + ra + if isinstance(c, dict) and c.get("code") + } if added or removed or title_changes: concept_changes_all.append( { "activity_id": aid, + "activity_name": ( + r_act.get(aid, {}).get("name") + or l_act.get(aid, {}).get("name") + or f"Activity {aid}" + ), "added": added, "removed": removed, "title_changes": title_changes, + "titles": titles, } ) @@ -832,7 +849,7 @@ def _get_concept_list(m, key): ( "biomedical_concepts", "biomedical_concept_uid", - ["name", "label", "code"], + ["name", "label", "code", "concept_id"], ), ( "bc_properties", @@ -860,6 +877,7 @@ def _get_concept_list(m, key): "added": ea, "removed": er, "changed": ec, + "data_unavailable": snap_key not in l_snap or snap_key not in r_snap, } def _truncate(lst): @@ -887,6 +905,7 @@ def _truncate(lst): "added": ea, "removed": er, "changed": ec, + "data_unavailable": raw["data_unavailable"], } entity_meta[snap_key] = { "added_total": len(raw["added"]), diff --git a/src/soa_builder/web/routers/activities.py b/src/soa_builder/web/routers/activities.py index 99c0d5c..8f0a67e 100644 --- a/src/soa_builder/web/routers/activities.py +++ b/src/soa_builder/web/routers/activities.py @@ -1350,7 +1350,7 @@ def ui_crf_options( """Return