This is the repository containing the YAML schemas for the MIDRC BDF Imaging Hub data dictionary.
The Imaging Hub is powered by the Gen3 software stack. For more information on Gen3, visit the documentation at gen3.org. For more details about how Gen3 uses a data model and how the data dictionary should be formatted, see https://gen3.org/resources/user/dictionary/.
The data dictionary provides the first level of validation for all submitted data. Written in YAML, JSON schemas define all the individual entities (nodes) in the data model. Moreover, these schemas define all of the relationships (links) between the nodes. Finally, the schemas define the valid key-value pairs that can be used to describe the nodes.
The Data Model covers all of the nodes within the as well as the relationships between the different types of nodes. All of the nodes in the data model are strongly typed and individually defined for a specific data type. Doing such allows for faster querying of the data model as well as providing a clear and concise representation of the data.
Beyond node type, there are also a number of extensions used to further define the nodes within
the data model. Nodes are grouped up into categories that represent broad roles for the node such
as subject
or sample
. Additionally, nodes are defined within their Program
or Project
and have descriptions of their use. All nodes also have a series of systemProperties
; these
properties are those that will be automatically filled by the system unless otherwise defined by
the user. These basic properties define the node itself but still need to be placed into the model.
The model itself is represented as a graph. Within the schema are defined links
; these links
point from child to parent with Program being the root of the graph. The links also contain a
backref
that allows for a parent to point back to a child. Other features of the link include a
semantic label
that describes the relationship between the two nodes, a multiplicity
property
that describes the numeric relationship from the child to the parent, and a requirement property
to define whether a node must have that link. Taken all together the nodes and links create the
directed graph of the Data Model.
Each node contains a series of potential key-value pairs (properties
) that can be used to
characterize the data they represent. Some properties are categorized as required
, and if a submission lacks a required property, it cannot be accepted. All properties not designated required
can be left out of submissions.
The properties have further validation through their entries. For basic string type properties, such as submitter_id
, any string value will be accepted as a valid entry. Other acceptance criteria can be defined in property definitions. For example, enum
type properties only allow one of a list of strings, which are enumerated in the property's definition. Regular expressions can also be used to limit string submissions to matching values. For numeric properties, maximum and minimum values can limit valid entries.
The following is an attempt to layout guidelines for the level of impact of changes to the dictionary by categorizing them into Breaking Changes, Entity Relation Additions, Schema Additions, Cosmetic Corrections.
Breaking changes are changes to the dictionary such that previously allowable data is invalid against the new schema, e.g. a removal of part of the dictionary.
N.B. That not all changes classified here as Breaking Changes are promised to require a data migration. It is possible that no data exists in the GDC that is invalidated by the change, e.g. making a field required that has never been left blank. This should be confirmed against the corpus of data and the userbase should be notified of a break in backwards-compatibility.
Breaking Changes include:
- Renaming/removing anything that is not a description or comment
- Removing an entity schema
- Removing a property's allowed
type
- Removing a property's allowed
enum
value - Changing an entity's
category
- Changing an entity's
unique_keys
- Changing an entity's
links
, includinglabel
,backref
- Removing a property from an entity schema
- Changing existence requirements
- Adding a property to the
required
list - Changing link
required
fromfalse
totrue
- Changing link
multiplicity
fromone_to_many
ormany_to_one
toone_to_one
- Changing link subgroup exclusivity from
false
totrue
- Adding a property to the
Handling breaking changes:
Sometimes it may be best to introduce necessary breaking changes incrementally. Given you have State A and State B, which are incomatible, if you can create a State AB that is compatible with both, you can upgrade to State AB without breaking changes, update data to be compliant with State B, then upgrade to State B.
- State A is deployed
- Upgrade to State AB
- Update data while State AB is deployed to be valid under State B
- Upgrade to State B
An example could be: Introduce required property color
:
- Property
color
does not exist - Deploy schema that allows but does not require
color
- Add color to all records
- Deploy schema that requires
color
Additions to the dictionary that create nodes, properties, or add links between nodes are not considered breaking changes, however, they should be carefully considered in context of downstream effects.
Entity Relation Additions include:
- Adding a new child node;
- Adding a new property to an existing node;
- Adding a new link between nodes without disrupting existing links.
Entity Relation downstream effects:
- Data commons operator will need to update the database schema;
- Users should be notified of additions.
The data commons is setup to allow strict additions to properties have minimal impact on existing data.
Schema Additions include:
- New properties;
- Less restrictive types for properties (e.g., changing enum or boolean to a string, or a number to integer);
- New allowed
enum
members for properties.
Schema Addition downstream effects:
- Users should be notified of additions
Cosmetic corrections are changes that have little to no behavioral effects.
Cosmetic Corrections include:
- Changes to terms
- Changes to documentation
- Schema formatting changes
Schema Addition downstream effects:
- No large impacts
Commits will automagically be run on TravisCI when a Pull Request is opened. If you would like to test locally they are run via tox
When updating the data dictionary version number, use the following guidelines to make decisions about what tag to use next:
- MAJOR: update to a new major version when many changes have been made, especially if the changes are breaking changes (listed above) leading to backward incompatibility. A major change could constitute the addition of a handful of new nodes or properties for capturing a new type of data that wasn't in the model before or changing the structure / relationships of major nodes in the model. Also use the major version update if a large number of minor updates have been made since the last major update.
- e.g. 1.2.4 -> 2.0.0
- MINOR: a minor update constitutes a large change or handful of smaller changes that nonetheless result in a dictionary that is backwards compatible or mostly so with the previous version. These changes could include smaller additions or modifications to support a new type of data, or the migration of one type of data to a new structure. Also use a minor version update if a large number of patches have been made since the last minor update.
- e.g. 1.2.4 -> 1.3.0
- PATCH: a patch is an update that is backwards compatible and addresses a single issue or small number of issues, including fixing typos, updating descriptions, non-breaking property type updates, adding enumeration values, or adding a new property or node to the model. Also use patch version updates for smaller changes that will eventually support a major change, for example, when actively developing or mocking up a larger change that isn't ready for deployment to production.
- e.g. 1.2.4 -> 1.2.5