Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

Note that ClinSpark has made significant extensions to the ODM in a number of areas.  Two examples are device connectivity and importation from the volunteer record.  There is no provision within ODM for either of these features.  To support this, extensions have been made to data within the ItemGroup and ItemRef domains.  This allows noting fields which will have their values populated from direct capture from medical devices, or from a volunteer record within the database.  Other such extensions exist throughout the ClinSpark data model.  As such, domains which originate in the CDISC standard often contain a superset of the data described by CDISC and also additions created by Foundry Health.

Org, Volunteer, Study, Sites, StudySites

...

and Subjects


TableFrom CDISC?Notes
1orgNoAn org represents an entity performing clinical research (CRO / CRU). Orgs can have multiple sites that execute studies.
2studyYesThis element collects static structural information about an individual study.  A study is related to a given clinical trial protocol.
3siteNoA site is a physical place belonging to an organization.  An organization having multiple physical clinical sites will have multiple site rows.
4study_siteNoAn association between a physical site and a study.  A study site is different than a physical location.  Often, pharma sponsors will specify sites with arbitrary codes and those codes must pass through during data export time. In addition, this domain encapsulates recruitment efforts for a given study / site.
5volunteerNoA volunteer is someone who indicates that they are interested in participating in clinical research for the given org.
6subjectYesSomeone participating in clinical research within the context of a given study. Creates glue between the volunteer and the participation.

...

An activity plan is a schedule of events for a given cohort.  Activity Plans do not appear in CDSIC.  In ODM, there is the notion of a FormRef. However, this design doesn't fit well with ph1 trials where forms are commonly repeated for a given study event (ie many PKs in a given day). As such, FormRef is implicitly available by way Scheduled Activities that are a part of a Segment / Activity Plan.


TableFrom CDISC?Notes
1StudyYesThis element collects static structural information about an individual study.  A study is related to a given clinical trial protocol.
2Activity PlanNoA schedule of events for a given cohort. Plans can be assigned to multiple cohorts. A timed plan must have a reference time in order to properly provide UI feedback as segments and scheduled activities are set.

Untimed Activity Plan:
  • Reference time must be null
  • Single segment; segment must be root and must have offset second set to zero


Timed Activity Plan:
  • Must have a reference time
  • Can have 1-n segments; always sort by offset seconds
  • Reference segment must have offset seconds of zero

Activity Plan fills the role of the FormRef in the ODM.

3SegmentPartially

Holds a group of scheduled activities in an activity plan. The segment's offset seconds is essentially the time of the reference event, all scheduled activities are relative to this.

Modeled somewhat of off CDISC SDM:

"Segments are often seen as the basic building blocks of study design. A segment usually specifies a combination of planned observations and interventions, which may or may not involve treatment, during a period of time."

4Scheduled ActivityNoWraps a form, but adds metadata including timing.
5FormYesA form is basically a container for item groups.
6Study EventYesA study event represents a given 'visit'. In phase 1 trials this will commonly simply refer to a 'day'. When scheduling forms for a given schedule, the builder must associate the study event. Note: there are common study events that are typically reserved for special events: unscheduled, common (AE, CM), etc

...

With this in mind, below is a view of how these elements relate to each other.


Note that form_data can have linkage to forms through scheduled activities or unscheduled.

ItemGroupData has an item_group_repeat_key which is used to track repeats.


TableFrom CDISC?Notes
1formYesBasically a container for item groups.
2form_dataYesForm data represents data collected for a given subject. Instead of storing the scheduled time on this domain, we leverage the relationship to the encapsulated scheduledActivity domain and thus its relationship to the segment. We purposely don't set formRepeatKey in the domain. It is calculated later on when building ODM.
3item_groupYesA collection of related items in a given form
4item_group_refYesA given item group within a form definition.
5item_group_dataYesAggregates item data
6itemYesRepresents the definition of a piece of data collected.
7item_refYesA given item within an item group definition.
8item_dataYesA piece of collected data
9study_eventYesA study event represents a given 'visit'. In phase 1 trials this will commonly simply refer to a 'day'. When scheduling forms for a given schedule, the builder must associate the study event. Note: there are common study events that are typically reserved for special events: unscheduled, common (AE, CM), etc
10study_event_dataYesClinical data for a study event (visit) for a given subject

...