Hello,
I was going through the web APIs and noticed that the JSON output format may be incorrect for the value representation of PN in tags such as {0008,0090} and {0010,0010}
“00080090”:{
“Value”:[
“^Bob^^Dr.”
],
“vr”:“PN”
},
For example (from https://support.dcmtk.org/docs/dcm2json.html)
“00080090”: {
“vr”: “PN”,
“Value”: [
{
“Alphabetic”: “^Bob^^Dr.”
}
]
},
The DICOM JSON midel is defined here:
http://dicom.nema.org/medical/Dicom/2016d/output/chtml/part18/sect_F.2.2.html
Will clients default/assume that it is Alphabetic if not specified? Or is this bad JSON?
Tak/Thanks!
Marie