xml – How to generate a JSON with a property containing .(dot) in one of the property in Custom Policies?

I am trying to generate JSON in custom policies for request body of an API.
The required API request body is Required Request Body but while using the below code

<ClaimsTransformation Id="GenerateAMNotificationRequestBody" TransformationMethod="GenerateJson">
    <InputClaims></InputClaims>
    <InputParameters>
      <InputParameter Id="something:abc.0:user.property" DataType="string" Value="value" />
    </InputParameters>
  </ClaimsTransformation>

It generates the following JSON current JSON using above code

Is generating the JSON in above format possible ? Why ?

Read more here: Source link