How to get around __ operator?

So, I’m trying to mock some JSON data coming from a SiteCore CMS system. Some of the data fields have names that start with a double underscore. Which is problematic in Mockaroo because this hides the column. Is there an explicit way to over ride this? Here is an example of some of the JSON I need to mock:

“__target”: null,
“__interfaces”: [],
“__baseType”: “System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”,
“__proxyGenerationOptions”: {
“hook”: {},
“selector”: null,
“mixins”: null,
“baseTypeForInterfaceProxy.AssemblyQualifiedName”: “System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”

You can use “\__” now.

1 Like

So, I’m not sure if its working as designed. I did this:
ExpandedServices.\__interceptors

Expecting the preview to look like this:
"ExpandedServices": { "__interceptors":

Instead it looks like this:
"ExpandedServices": { "\\__interceptors":

Did I miss some syntax somewhere?

Here’s an example that shows it working:

Output is:

[{
  "baseTypeForInterfaceProxy.AssemblyQualifiedName": true,
  "ExpandedServices": {
    "__interceptors": true
  }
}]