Creating "UserMetadata" / "ExtraMainDicomTags"

@alainmazy @threehappypenguins
I am trying to add a customized Tag “AssignedDoctorEmail” to the “Study” level; I understood from the documentation it can be achieved using the configuration file.
I maintained orthanc.json as following, however i can’t get the Tag created

=========== The Related Part of Orthanc.json file ===========

“UserMetadata”: {
“AssignedDoctorEmail”: 1025
},
“UserContentType”: {
“AssignedDoctorEmail”: [1025, “text/plain”]
},
“Dictionary”: {
“9905,0000”: [“UL”, “PrivateGroupLength”, 1, 1, “SMARDEX_AT_Medikalz”],
“9905,0010”: [“LO”, “PrivateCreator”, 1, 1, “SMARDEX_AT_Medikalz”],
“9905,1025”: [“LO”, “AssignedDoctorEmail”, 1, 1, “SMARDEX_AT_Medikalz”]
},

“LoadPrivateDictionary”: true,

“PrivateDictionary”: {
“SMARDEX_AT_Medikalz”: {
“1025”: “AssignedDoctorEmail”
}
},

“PrivateDictionaries”: {
“SMARDEX_AT_Medikalz”: {
“1025”: “AssignedDoctorEmail”
}
},

“DefaultPrivateCreator”: “SMARDEX_AT_Medikalz”,

“ExtraMainDicomTags”: {
“Instance”: ,
“Series”: ,
“Study”: [“AssignedDoctorEmail”],
“Patient”:
},

Hi,

FYI, Private DICOM Tags are not supported in ExtraMainDicomTags. I have updated the doc accordingly.

Best regards,

Alain.