diff OrthancServer/Resources/Configuration.json @ 4934:94a7b681b340 more-tags

added configuration for extra main dicom tags + save signature in metadata + show warning if inconsistent main dicom tags
author Alain Mazy <am@osimis.io>
date Thu, 10 Mar 2022 09:03:24 +0100
parents 1ce32c1ec4cf
children f377d5643538
line wrap: on
line diff
--- a/OrthancServer/Resources/Configuration.json	Wed Mar 09 12:16:45 2022 +0100
+++ b/OrthancServer/Resources/Configuration.json	Thu Mar 10 09:03:24 2022 +0100
@@ -858,5 +858,36 @@
   // (default behaviour).  A value > 1 is meaningful only if the storage
   // is a distributed network storage (e.g object storage plugin).
   // (new experimental feature in Orthanc 1.10.0)
-  "ZipLoaderThreads": 0
+  "ZipLoaderThreads": 0,
+
+  // Extra Main Dicom tags that are stored in DB together with all default
+  // Main Dicom tags that are already stored (TODO: see book new page). 
+  // (new in Orthanc 1.11.0)
+  /**
+  "ExtraMainDicomTags" : {
+    "Instance" : [
+      "Rows",
+      "Columns",
+      "ImageType",
+      "SOPClassUID",
+      "ContentDate",
+      "ContentTime",
+      "FrameOfReferenceUID",
+      "PixelSpacing",
+      "SpecificCharacterSet",
+      "BitsAllocated"
+    ],
+    "Series" : [],
+    "Study": [],
+    "Patient": []
+  },
+  */
+
+  // Enables/disables a warning notifying you when you try to access a
+  // resource that has been saved with a different version of the 
+  // ExtraMainDicomTags list
+  // TODO: see book new page
+  // (new in Orthanc 1.11.0)
+  "EnableLogsForInconsistentMainDicomTags": true
+
 }