We register tasks in LabelStudio as json files via the python SDK. When registering the task we make use of the data object within the task description, to add kind of meta data to the task that is relevant, see here:
{
"id": 25132,
"data": {
"csv": "/tasks/25132/presign/?fileuri=YXp1cmUtYmxvYjovLY2Vzc2VkLmNzdg==",
"m_process_end": "2025-03-19 23:18:35.065000+00:00",
"BMMC.ACT.O1.QCMS_Frequency": 5960674
},
"annotations": [],
"predictions": []
}
As you can see above, the data field BMMC.ACT.O1.QCMS_Frequncy has dots in its variable name. We think, this causes two issues:
-
Even its value is populated, it is not displayed in the task overview, see here:
-
When referring to this value in the labelling interface XML, for example via:
<Text name="meta1" value="Frequency: $BMMC.ACT.O1.QCMS_Frequncy"/>
we receive an error during task registration (that we don’t get if we comment out this line in the labelling interface)
Is this a known issue? Is our assumption correct? Should we generally avoid dots in the variable names in the data field? Is there a workaround like escaping dots in the xml?