If I have a JSON schema that includes periods in field names, the periods get parsed into structural components of the output JSON. For instance this:
“MSH”: {
“MSH.1”: “|”,
“MSH.2”: “^~\&”,
…parses as this in translation:
“MSH”:{
“MSH”:{
“1”:”\\|”,
“2”:”^~\\&”,
Is there a way to specify literal periods in the field names, without them getting parsed as structural components?