Skip to content

Data Views Available Fields and Technical Specifications

Introduction

Data Views allows you to create tabular data sets from image file metadata in the Flywheel database. It's important to understand what fields are available and the technical capabilities of the data view feature to use it appropriately. This document provides a detailed reference of the fields and technical specifications of data views.

Container Data Available

Fields are available from the Project, Subject, Session, Acquisition and File containers in the Flywheel data hierarchy. In addition, fields are available from the Analysis containers.

Common Fields Across All Containers

For all the containers listed above, the following fields are available:

container.id

container.created

container.modified

container.info

In the above, replace the word container with the actual container, for example acquisition.id, to identify the field.

Containers in the Hierarchy

For each container in the hierarchy, the available fields are as follows.

Project Container

project.label

project.tags

project.description

Subject Container

subject.label

subject.tags

subject.mlset

subject.sex

subject.code

subject.cohort

subject.strain

subject.ethnicity

subject.race

subject.firstname

subject.lastname

subject.species

subject.type

subject.notes

Session Container

session.label

session.tags

session.weight

session.operator

session.timezone

session.timestamp

session.age_days

session.age_weeks

session.age_months

session.age_years

session.url

session.notes

Acquisition Container

acquisition.labelĀ 

acquisition.tags

acquisition.timestamp

acquisition.timezone

Analysis Container Fields

Analysis containers can occur in the Project, Subject, Session, and Acquisition containers. The following fields are available:

analysis.label

analysis.description

analysis.job

analysis.gear_info

analysis.notes

analysis.parents.acquisition

analysis.parents.session

analysis.parents.subject

Custom Fields (.info subfields)

The .info subfields are custom defined and may return as structured arrays in the data view results. If a custom field called xyz is defined for a container, then this can be queried in a data view by:

container.info.xyz

where the word 'container' is one of the containers that have a .info field available in the lists above.

If the data is represented as a structured array, the array is returned in the data view result. For example:

{"AcquisitionDate":"20170906", "AcquisitionMatrix":[0,160,160,0], "AcquisitionNumber":1, "AcquisitionTime":"081330.532500"}

This also applies to the viewer annotations data stored in the sessions.info field.

Gear Info Subfields

The following subfields are available for file.gear_info and analysis.gear_info fields:

gear_info.name

gear_info.version

gear_info.id

gear_info.category

Notes subfields

Containers that have the .notes field have the following subfields:

notes.text

notes.user

notes.created

notes.modified

For these fields array data is returned containing the multiple notes.

Data Views Technical Specifications

The Data Views query capabilities are :

  1. Return tabular data based on simple filtering and column selection criteria. It is not meant to be a generic database query tool. For example, it does not support a query language with complex queries.
  2. Query results are atomic at the row level, meaning a row of data represents a collection of data that exists (or did exist) in the database together at the moment of the query. The complete query result consisting of multiple rows is not atomic, meaning that if the data changes in the database while the query is running, the data view result could contain rows reflecting data before the change as well as rows reflecting data after the change.
  3. The query is performance (both time required to perform the query and ability to complete the query successfully) depends on infrastructure and has limitations. Data views is tested to return 200K rows in under 15 minutes for a limited set of test queries and adequate infrastructure resources. Data views in the 1M - 6M rows are possible, with adequate time (multiple hours) and adequate resources.
  4. Data views is designed with both an SDK interface and a UI (graphical) interface. The SDK interface provides additional capabilities for data views not provided in the UI interface. These additional features are meant for technical users.
  5. A limited set of columns from the database are available for querying. In scope: Containers and files at the Acquisition, Session, Subject level. Analysis containers (excluding files), Project containers. Out of scope: Project files, Analysis files (Browser), and any other data not mentioned here.