简体   繁体   中英

How to modify a json list with jsonata

I have the following:

[{"result":"SUCCESS"}, {"result":"FAILURE"}, {"result":"SUCCESS"}]

I would like to transform with jsonata that into: [1,0,1]

BR,

$.(result = "SUCCESS" ? 1 : 0)

See https://try.jsonata.org/g_qF8wPAw

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM