Constructing a Query

Using search in Atlas requires a structured query.

Familiarize yourself with the structure of the data stored in Atlas.

Gradient Health, Inc stores data for all DICOM tags. This is our general schema:

[
  {
    "name": "Modality",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },
  {
    "name": "Body_Part_Examined",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },
  {
    "name": "Slice_Thinkness",
    "mode": "NULLABLE",
    "type": "FLOAT",
    "description": null,
    "fields": []
  },
  {
    "name": "Patient_Sex",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },
  {
    "name": "source_uri",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },
  {
    "name": "patient_id",
    "mode": "NULLABLE",
    "type": "INTEGER",
    "description": null,
    "fields": []
  },

  {
    "name": "deid_text",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },

  {
    "name": "bounding_boxes",
    "mode": "NULLABLE",
    "type": "STRING",
    "description": null,
    "fields": []
  },
  
  }
]

A general note: Gradient Health, Inc is SOC2 Certified and HIPAA compliant. All instances of PHI Name, Address (including subdivisions smaller than state such as street address, city, county, or zip code), Any dates (except years) that are directly related to an individual, including birthday, date of admission or discharge, date of death, or the exact age of individuals older than 89, Telephone number, Fax number, Email address, Social Security number, Medical record number, Health plan beneficiary number, Account number, Certificate/license number, Vehicle identifiers, serial numbers, or license plate numbers, Device identifiers or serial numbers, Web URLs, IP address, Biometric identifiers such as fingerprints or voice prints, Full-face photos, and any other unique identifying numbers, characteristics, or codes are de-identified and abstracted away from you the user.

Simple search - Example using lung nodules

The great thing about Atlas is its multiplicity of terms to get the same output. Here's an example of what searching for lung nodules looks like:

Here we search for lung nodules OR chest OR thorax OR mass. Here's another example of looking for lung nodules:

Another complex search: Example using brain mirco- hemorrhage

Here we look for micro-bleeds. That would like this in Atlas:

Last updated