comparison Resources/Configuration.json @ 1765:57b9e6890482

New configuration option: "Dictionary" to declare custom DICOM tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2015 16:49:25 +0100
parents 54d78925cbb6
children 53e045b5a8ec
comparison
equal deleted inserted replaced
1764:9ead18ef460a 1765:57b9e6890482
260 260
261 // When handling a C-Find SCP request, setting this flag to "true" 261 // When handling a C-Find SCP request, setting this flag to "true"
262 // will enable case-sensitive match for PN value representation 262 // will enable case-sensitive match for PN value representation
263 // (such as PatientName). By default, the search is 263 // (such as PatientName). By default, the search is
264 // case-insensitive, which does not follow the DICOM standard. 264 // case-insensitive, which does not follow the DICOM standard.
265 "CaseSensitivePN" : false 265 "CaseSensitivePN" : false,
266
267 // Register a new tag in the dictionary of DICOM tags that are known
268 // to Orthanc. Each line must contain the tag (formatted as 2
269 // hexadecimal numbers), the value representation (2 upcase
270 // characters), a nickname for the tag, possibly the minimum
271 // multiplicity (> 0 with defaults to 1), and possibly the maximum
272 // multiplicity (0 means arbitrary multiplicity, defaults to 1).
273 "Dictionary" : {
274 // "0014,1020" : [ "DA", "ValidationExpiryDate", 1, 1 ]
275 }
266 } 276 }