Json 如何在招摇过市字段中包含逗号-而不是csv

Json 如何在招摇过市字段中包含逗号-而不是csv,json,swagger-ui,Json,Swagger Ui,我很难找到转义代码,用于在Swagger UI的请求中包含逗号。如果货币/十进制格式使用逗号而不是点,则需要捕获 { "applicationReceivedDate": "2020-09-10", "contributionAmt": 500","00, "countryCd": 900, "creditablePeriodId": 1, "in

我很难找到转义代码,用于在Swagger UI的请求中包含逗号。如果货币/十进制格式使用逗号而不是点,则需要捕获

{
  "applicationReceivedDate": "2020-09-10",
  "contributionAmt": 500","00,
  "countryCd": 900,
  "creditablePeriodId": 1,
  "individualId": 112,
  "programCd": 1,
  "thirdCountryInd": false,
  "totalCreditableYears": 26
}
我尝试过很多逃避角色,但都没有成功

目前显示:

curl -X PUT "http://localhost:1970/cp/" -H  "accept: application/json" -H  "Content-Type: application/json" -d "{      \"applicationReceivedDate\": \"2020-09-10\",      \"contributionAmt\": 500\",\"00,      \"countryCd\": 900,      \"creditablePeriodId\": 1,      \"individualId\": 112,      \"programCd\": 1,      \"thirdCountryInd\": false,      \"totalCreditableYears\": 26    }"

“contributionAmt”:500,“00
不是有效的JSON。你的意思是“贡献”吗?:“500,00”?是的,在周末读了很多书之后,我知道这不是真的有效的——我希望有一些技巧或技巧在数字中包含逗号,但一直没能做到。不过,一定有办法用本国货币做到这一点。也许在swagger的设置中——im被分配了进行验证的任务,但无法通过逗号