comparison Resources/Configuration.json @ 1772:53e045b5a8ec

MIME content type can be associated to custom attachments (cf. "UserContentType")
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Nov 2015 14:36:27 +0100
parents 57b9e6890482
children cd213ebcaefd
comparison
equal deleted inserted replaced
1771:8790488ae98b 1772:53e045b5a8ec
188 /** 188 /**
189 * Advanced options 189 * Advanced options
190 **/ 190 **/
191 191
192 // Dictionary of symbolic names for the user-defined metadata. Each 192 // Dictionary of symbolic names for the user-defined metadata. Each
193 // entry must map a number between 1024 and 65535 to an unique 193 // entry must map an unique string to an unique number between 1024
194 // string. 194 // and 65535.
195 "UserMetadata" : { 195 "UserMetadata" : {
196 // "Sample" : 1024 196 // "Sample" : 1024
197 }, 197 },
198 198
199 // Dictionary of symbolic names for the user-defined types of 199 // Dictionary of symbolic names for the user-defined types of
200 // attached files. Each entry must map a number between 1024 and 200 // attached files. Each entry must map an unique string to an unique
201 // 65535 to an unique string. 201 // number between 1024 and 65535. Optionally, a second argument can
202 // provided to specify a MIME content type for the attachment.
202 "UserContentType" : { 203 "UserContentType" : {
203 // "sample" : 1024 204 // "sample" : 1024
205 // "sample2" : [ 1025, "application/pdf" ]
204 }, 206 },
205 207
206 // Number of seconds without receiving any instance before a 208 // Number of seconds without receiving any instance before a
207 // patient, a study or a series is considered as stable. 209 // patient, a study or a series is considered as stable.
208 "StableAge" : 60, 210 "StableAge" : 60,