Add new claim for oidc in Azure AD

Hi All,

Sorry for asking so many times, getting a lot of pressure on this, and no really how to fix it. I am trying to integrate Azure ID with CS’s OIDC, but I need to add ‘email_verified’ as an additional claim to the token. Can anyone provide any guidance on this? Whenever we try to create the claim, our shell returns an error quoting an invalid value.

Here is the payload we are trying to use to create it. Any help is appreciated.

$NEW_CLAIM = '{    "ClaimsMappingPolicy":  
                {
                "Version":  1,
                "IncludeBasicClaimSet":  "true",
                "ClaimsSchema":  [
                                      {
                                             "SamlClaimType":  "uid",
                                             "Source":  "user",
                                             "JwtClaimType":  "uid",
                                             "ID":  "onpremisessamaccountname"
                                      },                                                     
                                      {
                                             "SamlClaimType":  "mail",
                                             "Source":  "user",
                                             "JwtClaimType":  "mail",
                                             "ID":  "userprincipalname"
                                     },
                                     {
                                                                
                                            “DataType”: “boolean”,
                                            "Value":   true,
                                            "JwtClaimType":   "email_verified"
                                     }
                            ]
                }
}'