Skip to content

Conflict Handling with Bulk Imports

The Bulk Import system performs conflict detection automatically and surfaces conflict scenarios to a Data Manager for review and resolution before placing the affected data into Flywheel Core.

Detection of Conflicts

The following data conflict scenarios are automatically detected when importing files in bulk.

File Path Collision

  • A file already exists with the same name at the intended destination path.
  • Multiple files with the same name are being imported into the same destination path either within the same import or across multiple simultaneous imports.

Container UID Duplication (Session or Acquisition)

When locating the intended destination container path for an incoming file by matching on a container UID (Session or Acquisition):

  • Multiple containers of the same type exist with the same UID in any location (pre-existing UID duplication), or
  • Only one container of the same type already exists with the same UID, but
    • It is located under a different parent container than the incoming data specifies (new UID duplication), or
    • It has a different label than the incoming data specifies (label mismatch)

Container Metadata Conflicts (Subject, Session, or Acquisition)

When locating the intended destination container path for an incoming file by matching on a container label (Subject, Session, or Acquisition):

  • Multiple containers of the same type exist in the same location with the same UID (pre-existing label duplication), or
  • Only one container of the same type already exists in the same location with the same label, but
    • It has a different UID than the incoming data specifies (UID mismatch)

Configurable Scope for UID Duplication

When determining Container UID duplication, the search scope is configurable to be any one of the following three options:

  • Site: The same UID is used on more than container of the same type anywhere in the entire Flywheel site
  • Group: The same UID is used on more than container of the same type anywhere within the same Group
  • Project: The same UID is used on more than container of the same type anywhere within the same Project

The default choice is for the UID duplication scope to be set to Project.

To change the scope for UID duplication, contact Flywheel support.

Quarantining of Conflicts

By default, imports do not fail when conflicts are detected. Instead,

  • Files or containers that do not cause conflicts are imported normally even if other files within the same import job do cause conflicts, and
  • Files or containers that do cause conflicts are are quarantined within Flywheel but outside of the destination project, so that the pre-existing data is unaffected until a Data Manager is able to resolve the conflicts.

Tools for Resolving Conflicts

Tools are provided for data managers to resolve conflicts.

For each conflict occurrence, the system explains what caused the conflict, including the source and destination paths:

  • For File Path Collisions: Source path, destination path, and existing file name
  • For Container UID or Metadata duplication: Source file path, source UID, source UID, destination path, and for each conflicting file with matching UID (there may be multiple conflicting files):
    • Path to existing file in Flywheel hierarchy
    • UID of existing file

For each conflict occurrence, provide data managers options for resolving the conflict and clearing the occurrence from the quarantine area:

  • Update Existing: Update existing item with new information
  • Keep All: Keep both the existing and incoming data but without overwriting the existing data. (i.e., either allow duplication or rename the incoming data item to avoid conflict),
    • For File Path Collisions, automatically append a suffix to the incoming file name to avoid the collision
    • For Container Label Duplication, automatically append a suffix to the incoming container to avoid the duplication
    • For Container UID Duplication, allow the UID duplication to exist by creating the additional container with the same UID
  • Skip: Reject new item (i.e., ignore incoming item, leave existing item unaffected), or
  • Retry: Run the conflict detection logic again for this item to determine if the conflict still exists or not (i.e., check again).

Conflicts Report

Each conflict detected during an import job run is recorded and made available in a Conflict Report for future audit purposes even after the conflict is resolved. If an action was taken to resolve a conflict, that action is also recorded in the Conflict Report.

The Conflict Report details every conflict that was detected for the associated import job along with which action was taken, if any, to resolve each conflict.

Downloading the Conflicts Report

Via the Web App

The conflict report can be found by navigating to the Bulk Import jobs list page, locating the import job, and then either:

  1. Selecting the "Download Conflict Report" option in the overflow menu on the import job line, or

    Project -> Imports List -> Download Conflict Report

  2. Opening the Import job details dialog from the overflow menu on the import job line and then selecting the "Download Conflict Report" button

    Project -> Imports List -> Details Dialog -> Download Report

The conflict report is available in either CSV or JSON Lines (JSONL) format.

  • The CSV format can be opened in any standard spreadsheet software and may be the simplest option.
  • The JSON Lines format is best when reading the report programmatically.

    Project -> Imports List -> Download Report -> Format Option

Via the New (BETA) CLI

The import audit report can be downloaded via the new (BETA) CLI using the following command:

fw-beta import get <id> --conflict-report <format>

Where:

  • <id> is replaced with the ID of the import job to be monitored, and
  • <format> is either csv or jsonl

If you do not know the import job ID, see the article locating the import job ID.

Tip

The output will be written to the terminal (stdout), so you may want to redirect the output to a file for storage instead. E.g., fw-beta import get 682ccd2079fed7cd5c0cd46e --report jsonl > ~/Downloads/import-audit-report-682ccd2079fed7cd5c0cd46e.jsonl

For more information, see the new CLI documentation for import get.

Formats for the Conflicts Report

The import conflict report is available in either CSV or JSON Lines (JSONL) format.

CSV

The CSV version of the import conflict report contains the following columns:

  • id -- Unique identifier for the specific conflict occurrence.
  • created -- Date and time when the conflict was detected.
  • level -- Container level at which the conflict was found (e.g., session).
  • type -- Type of conflict detected (e.g., multiple_uid_matches_found).
  • upload_path -- Path to where the incoming file was to be placed in the Flywheel Hierarchy.
  • resolved -- Date and time when the conflict was resolved.
  • resolved_by -- User (or device) who resolved the conflict (e.g., user jdoe@flywheel.io).
  • action -- Action taken to resolve the conflict (e.g., reject_incoming).
  • action_error -- Description of error that occurred when applying the resolution action, if any.
  • action_result -- Result of action taken to resolve the conflict.
Import Conflict Report -- CSV Example

The following table shows an entire CSV-formatted Import Conflict Report.

id created level type upload_path resolved resolved_by action action_error action_result
67fea90c3837b0d07e1ca0ba 2025-04-15T18:44:28.314000+00:00 file file_name_already_exists PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip 2025-04-15 18:46:10.225000+00:00 user jdoe@acme.com replace_existing nan PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip
67fea90c3837b0d07e1ca0bb 2025-04-15T18:44:28.670000+00:00 session uid_match_belongs_to_a_different_parent FLYW-017/RA FH MR RCBV OP/16 - T1post/16 - T1post.dicom.zip 2025-04-15 18:48:10.090000+00:00 user jdoe@acme.com reject_incoming nan nan
67fea9383837b0d07e1ca0bd 2025-04-15T18:45:12.295000+00:00 session label_match_already_has_a_different_uid PGBM-017/RA FH MR RCBV OP/37613 - FLAIR_reg/37613 - FLAIR_reg.dicom.zip nan nan nan nan nan
67fea961d8262959911ca0b2 2025-04-15T18:45:53.884000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip 2025-04-15 18:46:30.158000+00:00 user jdoe@acme.com replace_existing nan PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip
67fea9633837b0d07e1ca0bf 2025-04-15T18:45:55.191000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37616 - T1pre_reg/37616 - T1pre_reg.dicom.zip 2025-04-15 18:46:30.256000+00:00 user jdoe@acme.com replace_existing nan PGBM-017/RA FH MR RCBV OP/37616 - T1pre_reg/37616 - T1pre_reg.dicom.zip
67fea98c3837b0d07e1ca0c2 2025-04-15T18:46:36.568000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip nan nan nan nan nan
67fea98eaafa9876cd1ca0b7 2025-04-15T18:46:38.688000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip nan nan nan nan nan
67fea9b73837b0d07e1ca0c3 2025-04-15T18:47:19.536000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37620 - sRCBV_reg/37620 - sRCBV_reg.dicom.zip nan nan nan nan nan
67fea9ba3837b0d07e1ca0c4 2025-04-15T18:47:22.867000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37620 - sRCBV_reg/37620 - sRCBV_reg.dicom.zip nan nan nan nan nan
67fea9e13837b0d07e1ca0c6 2025-04-15T18:48:01.992000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37621 - nRCBV_reg/37621 - nRCBV_reg.dicom.zip nan nan nan nan nan
67fea9e73837b0d07e1ca0c7 2025-04-15T18:48:07.810000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/37751 - T2_reg/37751 - T2_reg.dicom.zip nan nan nan nan nan
67feaa0daafa9876cd1ca0bd 2025-04-15T18:48:45.084000+00:00 file file_name_already_exists PGBM-017/RA FH MR RCBV OP/5361 - Mask_Tumor/5361 - Mask_Tumor.dicom.zip nan nan nan nan nan

The following table shows a single line from a CSV-formatted Import Conflict Report. The line has been transposed for easier viewing.

id 67fea90c3837b0d07e1ca0ba
created 2025-04-15T18:44:28.314000+00:00
level file
type file_name_already_exists
upload_path PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip
resolved 2025-04-15 18:46:10.225000+00:00
resolved_by user jdoe@acme.com
action replace_existing
action_error nan
action_result PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip

JSON Lines

The JSON Lines version of the import conflict report contains far more technical details about the each conflict.

Import Conflict Report -- JSONLines Example
{"_id":"67fea90c3837b0d07e1ca0ba","created":"2025-04-15T18:44:28.314+00:00","modified":"2025-04-15T18:46:10.225+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"32602 - dT1.dicom.zip","parent_ref.id":"66f48f870b34d8428fa397c0"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"FLYW FH MR RCBV","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064","label":"32602 - dT1","timestamp":"1997-09-17T10:11:00.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"ca7ea8b0bd3542bc9bdbc68558ee55a1","name":"32602 - dT1.dicom.zip","size":12114464,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/32602 - dT1","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"FLYW FH MR RCBV","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f870b34d8428fa397c0","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064","label":"32602 - dT1","timestamp":"1997-09-17T10:11:00.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"9f44f149-c769-4a85-998c-13a1c278f3cf","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","resolved":"2025-04-15T18:46:10.225+00:00","resolved_by":{"type":"user","id":"jdoe@acme.com"},"action":{"method":"replace_existing"},"action_result":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"_id":"66f48f800b34d8428fa394d8","upsert":"skip","upsert_result":"skipped","label":"PGBM-017"},"session":{"_id":"66f48f800b34d8428fa394e6","upsert":"update","upsert_result":"updated","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"FLYW FH MR RCBV"},"acquisition":{"_id":"66f48f870b34d8428fa397c0","upsert":"update","upsert_result":"updated","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064","label":"32602 - dT1"},"file":{"_id":{"file_id":"66f48f87b2430337c5b54004","version":2},"upsert":"update","upsert_result":"updated","name":"32602 - dT1.dicom.zip","size":12114464}},"batch_id":"67fea9708ee85bed481ca0b4","upload_path":"PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip"}
{"_id":"67fea90c3837b0d07e1ca0bb","created":"2025-04-15T18:44:28.670+00:00","modified":"2025-04-15T18:48:10.090+00:00","type":"uid_match_belongs_to_a_different_parent","message":"Session conflict: uid match belongs to a different parent","level":"session","fields":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","parents.project":"66f48e14b2430337c5b53ffe"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"FLYW-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.152382305681163727022426619554","label":"16 - T1post","timestamp":"1997-09-17T10:11:00.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"be143c1f7305ce50bcd8a84415d6b9af","name":"16 - T1post.dicom.zip","size":12185396,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/16 - T1post","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"create","label":"FLYW-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"create"}},"blob":{"uuid":"eb6ee869-e22c-455c-8730-3601b05a1e27","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","resolved":"2025-04-15T18:48:10.090+00:00","resolved_by":{"type":"user","id":"jdoe@acme.com"},"action":{"method":"reject_incoming"},"batch_id":"67fea9e5aafa9876cd1ca0bc","upload_path":"FLYW-017/RA FH MR RCBV OP/16 - T1post/16 - T1post.dicom.zip"}
{"_id":"67fea9383837b0d07e1ca0bd","created":"2025-04-15T18:45:12.295+00:00","modified":"2025-04-15T18:45:12.295+00:00","type":"label_match_already_has_a_different_uid","message":"Session conflict: label match already has a different uid","level":"session","fields":{"_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.888888888888888888888888888888","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.142842847722149585067912163660","label":"37613 - FLAIR_reg","timestamp":"1997-09-17T09:50:49.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"0aaf4cde5da2de83dcc2a5a075b2133e","name":"37613 - FLAIR_reg.dicom.zip","size":12121410,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37613 - FLAIR_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}}},"blob":{"uuid":"a8de8303-8c07-4681-b5aa-b6ddb6e91960","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37613 - FLAIR_reg/37613 - FLAIR_reg.dicom.zip"}
{"_id":"67fea961d8262959911ca0b2","created":"2025-04-15T18:45:53.884+00:00","modified":"2025-04-15T18:46:30.256+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37619 - nCBF_reg.dicom.zip","parent_ref.id":"66f48f930b34d8428fa39c31"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"6b462b9a6731f09a21bc5885b8f486f3","name":"37619 - nCBF_reg.dicom.zip","size":12114556,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37619 - nCBF_reg copy1","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f930b34d8428fa39c31","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"fa0ed5b5-d6f9-4f25-9c70-4e27ba0ab971","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","resolved":"2025-04-15T18:46:30.158+00:00","resolved_by":{"type":"user","id":"jdoe@acme.com"},"action":{"method":"replace_existing"},"action_result":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"_id":"66f48f800b34d8428fa394d8","upsert":"skip","upsert_result":"skipped","label":"PGBM-017"},"session":{"_id":"66f48f800b34d8428fa394e6","upsert":"update","upsert_result":"updated","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP"},"acquisition":{"_id":"66f48f930b34d8428fa39c31","upsert":"update","upsert_result":"updated","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg"},"file":{"_id":{"file_id":"66f48f94b2430337c5b54006","version":2},"upsert":"update","upsert_result":"updated","name":"37619 - nCBF_reg.dicom.zip","size":12114556}},"batch_id":"67fea9843837b0d07e1ca0c0","upload_path":"PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip"}
{"_id":"67fea9633837b0d07e1ca0bf","created":"2025-04-15T18:45:55.191+00:00","modified":"2025-04-15T18:46:30.256+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37616 - T1pre_reg.dicom.zip","parent_ref.id":"66f48f920b34d8428fa39b7b"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.302359271346144066899864052595","label":"37616 - T1pre_reg","timestamp":"1997-09-17T09:50:49.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"59f64132a3515930a104e6f14d782e40","name":"37616 - T1pre_reg.dicom.zip","size":12121410,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37616 - T1pre_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f920b34d8428fa39b7b","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.302359271346144066899864052595","label":"37616 - T1pre_reg","timestamp":"1997-09-17T09:50:49.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"05f996c3-7bf3-4dd3-86c3-2a461aebc055","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","resolved":"2025-04-15T18:46:30.256+00:00","resolved_by":{"type":"user","id":"jdoe@acme.com"},"action":{"method":"replace_existing"},"action_result":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"_id":"66f48f800b34d8428fa394d8","upsert":"skip","upsert_result":"skipped","label":"PGBM-017"},"session":{"_id":"66f48f800b34d8428fa394e6","upsert":"skip","upsert_result":"skipped","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP"},"acquisition":{"_id":"66f48f920b34d8428fa39b7b","upsert":"update","upsert_result":"updated","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.302359271346144066899864052595","label":"37616 - T1pre_reg"},"file":{"_id":{"file_id":"66f48f92b2430337c5b54005","version":2},"upsert":"update","upsert_result":"updated","name":"37616 - T1pre_reg.dicom.zip","size":12121410}},"batch_id":"67fea9843837b0d07e1ca0c0","upload_path":"PGBM-017/RA FH MR RCBV OP/37616 - T1pre_reg/37616 - T1pre_reg.dicom.zip"}
{"_id":"67fea98c3837b0d07e1ca0c2","created":"2025-04-15T18:46:36.568+00:00","modified":"2025-04-15T18:46:36.568+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37619 - nCBF_reg.dicom.zip","parent_ref.id":"66f48f930b34d8428fa39c31"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"a1151212355c76dc67033ba30636ebf4","name":"37619 - nCBF_reg.dicom.zip","size":12114556,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37619 - nCBF_reg copy2","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f930b34d8428fa39c31","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"942ddd8b-05da-4e76-b10f-826782a860ca","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip"}
{"_id":"67fea98eaafa9876cd1ca0b7","created":"2025-04-15T18:46:38.688+00:00","modified":"2025-04-15T18:46:38.688+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37619 - nCBF_reg.dicom.zip","parent_ref.id":"66f48f930b34d8428fa39c31"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"8a61bf92ec9ebacbe5f85361c6016ea9","name":"37619 - nCBF_reg.dicom.zip","size":12114556,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37619 - nCBF_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f930b34d8428fa39c31","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.289429748580531419381875267671","label":"37619 - nCBF_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"156c9bd2-977d-4e61-b9a0-da81f558a546","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37619 - nCBF_reg/37619 - nCBF_reg.dicom.zip"}
{"_id":"67fea9b73837b0d07e1ca0c3","created":"2025-04-15T18:47:19.536+00:00","modified":"2025-04-15T18:47:19.536+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37620 - sRCBV_reg.dicom.zip","parent_ref.id":"66f48f980b34d8428fa39dce"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.306727074817427165081812077644","label":"37620 - sRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"57e27454c8aefe454d3ca6f6d0c2f7a5","name":"37620 - sRCBV_reg.dicom.zip","size":12114602,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37620 - sRCBV_reg copy","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f980b34d8428fa39dce","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.306727074817427165081812077644","label":"37620 - sRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"b1cd56ff-f520-419e-9bda-139071f6b1a6","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37620 - sRCBV_reg/37620 - sRCBV_reg.dicom.zip"}
{"_id":"67fea9ba3837b0d07e1ca0c4","created":"2025-04-15T18:47:22.867+00:00","modified":"2025-04-15T18:47:22.867+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37620 - sRCBV_reg.dicom.zip","parent_ref.id":"66f48f980b34d8428fa39dce"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.306727074817427165081812077644","label":"37620 - sRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"c8903a6f3ba36e635694c561f0325290","name":"37620 - sRCBV_reg.dicom.zip","size":12114602,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37620 - sRCBV_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f980b34d8428fa39dce","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.306727074817427165081812077644","label":"37620 - sRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"695039ce-a3ed-44fb-8d4a-957c6e112b70","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37620 - sRCBV_reg/37620 - sRCBV_reg.dicom.zip"}
{"_id":"67fea9e13837b0d07e1ca0c6","created":"2025-04-15T18:48:01.992+00:00","modified":"2025-04-15T18:48:01.992+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37621 - nRCBV_reg.dicom.zip","parent_ref.id":"66f48f990b34d8428fa39e76"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.813101845682521951429283566454","label":"37621 - nRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"93dcee40e5b6bba561295da5d714a958","name":"37621 - nRCBV_reg.dicom.zip","size":12114602,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37621 - nRCBV_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f990b34d8428fa39e76","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.813101845682521951429283566454","label":"37621 - nRCBV_reg","timestamp":"1997-09-17T10:19:41.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"bc69492e-9ee8-48a6-a8dd-5aa6acb559d9","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37621 - nRCBV_reg/37621 - nRCBV_reg.dicom.zip"}
{"_id":"67fea9e73837b0d07e1ca0c7","created":"2025-04-15T18:48:07.810+00:00","modified":"2025-04-15T18:48:07.810+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"37751 - T2_reg.dicom.zip","parent_ref.id":"66f48f800b34d8428fa3951c"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.233152897116500656820986886167","label":"37751 - T2_reg","timestamp":"1997-09-17T09:47:04.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"b32a9924201d765db3ed597d0451b384","name":"37751 - T2_reg.dicom.zip","size":12120766,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/37751 - T2_reg","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f800b34d8428fa3951c","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.233152897116500656820986886167","label":"37751 - T2_reg","timestamp":"1997-09-17T09:47:04.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"21a60301-e054-41b0-a296-00e491feef55","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/37751 - T2_reg/37751 - T2_reg.dicom.zip"}
{"_id":"67feaa0daafa9876cd1ca0bd","created":"2025-04-15T18:48:45.084+00:00","modified":"2025-04-15T18:48:45.084+00:00","type":"file_name_already_exists","message":"File conflict: file name already exists","level":"file","fields":{"name":"5361 - Mask_Tumor.dicom.zip","parent_ref.id":"66f48f850b34d8428fa396f4"},"upload_metadata":{"project":{"_id":"66f48e14b2430337c5b53ffe"},"subject":{"label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{}},"session":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{}},"acquisition":{"uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.177904166014749817512419211278","label":"5361 - Mask_Tumor","timestamp":"1997-09-17T10:11:00.000+00:00","timezone":"UTC","info":{}},"file":{"client_hash":"ab7fe3b673f9baa0365c2c0a8ccb9a9b","name":"5361 - Mask_Tumor.dicom.zip","size":12112916,"type":"dicom","zip_member_count":23},"storage_prefix":"Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/5361 - Mask_Tumor","storage_paths":["1-01.dcm","1-02.dcm","1-03.dcm","1-04.dcm","1-05.dcm","1-06.dcm","1-07.dcm","1-08.dcm","1-09.dcm","1-10.dcm","1-11.dcm","1-12.dcm","1-13.dcm","1-14.dcm","1-15.dcm","1-16.dcm","1-17.dcm","1-18.dcm","1-19.dcm","1-20.dcm","1-21.dcm","1-22.dcm","1-23.dcm"]},"resolved_parents":{"group":{"_id":"demo","label":"Demo"},"project":{"_id":"66f48e14b2430337c5b53ffe","label":"ACME Research"},"subject":{"upsert":"skip","_id":"66f48f800b34d8428fa394d8","label":"PGBM-017","lastname":"Pgbm-017","sex":"female","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe"}},"session":{"upsert":"skip","_id":"66f48f800b34d8428fa394e6","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753","label":"RA FH MR RCBV OP","timestamp":"1997-09-17T09:20:43.000+00:00","timezone":"UTC","age":1483207200,"weight":58.97,"info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8"}},"acquisition":{"upsert":"skip","_id":"66f48f850b34d8428fa396f4","uid":"1.3.6.1.4.1.14519.5.2.1.4429.7055.177904166014749817512419211278","label":"5361 - Mask_Tumor","timestamp":"1997-09-17T10:11:00.000+00:00","timezone":"UTC","info":{},"upsert_intent":"skip","parents":{"group":"demo","project":"66f48e14b2430337c5b53ffe","subject":"66f48f800b34d8428fa394d8","session":"66f48f800b34d8428fa394e6"}}},"blob":{"uuid":"cf2b9c8b-1b9b-4fbd-ba43-f7d906834709","provider_id":"66f47f28a4f57570651bffd3"},"source":{"type":"import","id":"67fea8de8ee85bed481ca0b2"},"uid_scope":"project","upload_path":"PGBM-017/RA FH MR RCBV OP/5361 - Mask_Tumor/5361 - Mask_Tumor.dicom.zip"}
{
  "_id": "67fea90c3837b0d07e1ca0ba",
  "created": "2025-04-15T18:44:28.314+00:00",
  "modified": "2025-04-15T18:46:10.225+00:00",
  "type": "file_name_already_exists",
  "message": "File conflict: file name already exists",
  "level": "file",
  "fields": {
    "name": "32602 - dT1.dicom.zip",
    "parent_ref.id": "66f48f870b34d8428fa397c0"
  },
  "upload_metadata": {
    "project": {
      "_id": "66f48e14b2430337c5b53ffe"
    },
    "subject": {
      "label": "PGBM-017",
      "lastname": "Pgbm-017",
      "sex": "female",
      "info": {}
    },
    "session": {
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753",
      "label": "FLYW FH MR RCBV",
      "timestamp": "1997-09-17T09:20:43.000+00:00",
      "timezone": "UTC",
      "age": 1483207200,
      "weight": 58.97,
      "info": {}
    },
    "acquisition": {
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064",
      "label": "32602 - dT1",
      "timestamp": "1997-09-17T10:11:00.000+00:00",
      "timezone": "UTC",
      "info": {}
    },
    "file": {
      "client_hash": "ca7ea8b0bd3542bc9bdbc68558ee55a1",
      "name": "32602 - dT1.dicom.zip",
      "size": 12114464,
      "type": "dicom",
      "zip_member_count": 23
    },
    "storage_prefix": "Brain Tumor Progression/PGBM-017/1997-09-17 09_20_43/32602 - dT1",
    "storage_paths": [
      "1-01.dcm",
      "1-02.dcm",
      "1-03.dcm",
      "1-04.dcm",
      "1-05.dcm",
      "1-06.dcm",
      "1-07.dcm",
      "1-08.dcm",
      "1-09.dcm",
      "1-10.dcm",
      "1-11.dcm",
      "1-12.dcm",
      "1-13.dcm",
      "1-14.dcm",
      "1-15.dcm",
      "1-16.dcm",
      "1-17.dcm",
      "1-18.dcm",
      "1-19.dcm",
      "1-20.dcm",
      "1-21.dcm",
      "1-22.dcm",
      "1-23.dcm"
    ]
  },
  "resolved_parents": {
    "group": {
      "_id": "demo",
      "label": "Demo"
    },
    "project": {
      "_id": "66f48e14b2430337c5b53ffe",
      "label": "ACME Research"
    },
    "subject": {
      "upsert": "skip",
      "_id": "66f48f800b34d8428fa394d8",
      "label": "PGBM-017",
      "lastname": "Pgbm-017",
      "sex": "female",
      "info": {},
      "upsert_intent": "skip",
      "parents": {
        "group": "demo",
        "project": "66f48e14b2430337c5b53ffe"
      }
    },
    "session": {
      "upsert": "skip",
      "_id": "66f48f800b34d8428fa394e6",
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753",
      "label": "FLYW FH MR RCBV",
      "timestamp": "1997-09-17T09:20:43.000+00:00",
      "timezone": "UTC",
      "age": 1483207200,
      "weight": 58.97,
      "info": {},
      "upsert_intent": "skip",
      "parents": {
        "group": "demo",
        "project": "66f48e14b2430337c5b53ffe",
        "subject": "66f48f800b34d8428fa394d8"
      }
    },
    "acquisition": {
      "upsert": "skip",
      "_id": "66f48f870b34d8428fa397c0",
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064",
      "label": "32602 - dT1",
      "timestamp": "1997-09-17T10:11:00.000+00:00",
      "timezone": "UTC",
      "info": {},
      "upsert_intent": "skip",
      "parents": {
        "group": "demo",
        "project": "66f48e14b2430337c5b53ffe",
        "subject": "66f48f800b34d8428fa394d8",
        "session": "66f48f800b34d8428fa394e6"
      }
    }
  },
  "blob": {
    "uuid": "9f44f149-c769-4a85-998c-13a1c278f3cf",
    "provider_id": "66f47f28a4f57570651bffd3"
  },
  "source": {
    "type": "import",
    "id": "67fea8de8ee85bed481ca0b2"
  },
  "uid_scope": "project",
  "resolved": "2025-04-15T18:46:10.225+00:00",
  "resolved_by": {
    "type": "user",
    "id": "jdoe@acme.com"
  },
  "action": {
    "method": "replace_existing"
  },
  "action_result": {
    "group": {
      "_id": "demo",
      "label": "Demo"
    },
    "project": {
      "_id": "66f48e14b2430337c5b53ffe",
      "label": "ACME Research"
    },
    "subject": {
      "_id": "66f48f800b34d8428fa394d8",
      "upsert": "skip",
      "upsert_result": "skipped",
      "label": "PGBM-017"
    },
    "session": {
      "_id": "66f48f800b34d8428fa394e6",
      "upsert": "update",
      "upsert_result": "updated",
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.577653094293787944422597985753",
      "label": "FLYW FH MR RCBV"
    },
    "acquisition": {
      "_id": "66f48f870b34d8428fa397c0",
      "upsert": "update",
      "upsert_result": "updated",
      "uid": "1.3.6.1.4.1.14519.5.2.1.4429.7055.100646156264274861580193900064",
      "label": "32602 - dT1"
    },
    "file": {
      "_id": {
        "file_id": "66f48f87b2430337c5b54004",
        "version": 2
      },
      "upsert": "update",
      "upsert_result": "updated",
      "name": "32602 - dT1.dicom.zip",
      "size": 12114464
    }
  },
  "batch_id": "67fea9708ee85bed481ca0b4",
  "upload_path": "PGBM-017/FLYW FH MR RCBV/32602 - dT1/32602 - dT1.dicom.zip"
}