skip to Main Content

Json – Change the date format in JOLT

In the attached JOLT, I want to change the date format, type conversion and string operation as follows. Date needs to change into yyyy-mm-dd hh:mm:ss format (2024-06-16 23:54:14) from UTC (2024-06-16T23:54:14.711456Z) The value of WEIGHT code needs to convert into…

VIEW QUESTION

Parsing JSON with Oracle SQL without knowing incoming field names

I need to parse JSON using Oracle SQL select. Here is my JSON: {"result":[ { "field_name1":{"display_value":"TEST1","link":"https://test1.com","value":"abcd"}, "field_name2":{"display_value":"","link":"","value":""}, "field_name3":{"display_value":"TEST3","link":"https://test3.com","value":"efgh"}, "field_name4":{"display_value":"TEST4","link":"https://test3.com","value":"ijkl"} } ]} I want to get results as follows: field_name1:abcd field_name3:efgh field_name4:ijkl excluding those that have nulls in the value. How…

VIEW QUESTION

Json – Need Jolt transform with below

Hi I'am trying a jolt transform of below { "Others": { "eventTime": "2024-09-05T01:50:05.861", "groupArticleNumber": "IW6012", "groupModelNumber": "JSO42", "seasonCode": "20242" }, "x": [ { "materialComposition": "100% PET-REC", "mainMaterialFlag": true } ], "y": [ { "sourcingSizeCode3": "550" }, { "sourcingSizeCode3": "540" }…

VIEW QUESTION

Json – How can I extract data from this encoded string?

I received this string as a response from a private API of a sports betting site: https://sport.synottip.cz: CoEECv4DCvsDCgwKAjEyEgZGb3RiYWwYvwYi5wMKGAoDeDQ0Eg1NZXppbsOhcm9kbsOtGgIxMhLKAwrHAwoGeHgxMjc4EhhLdmFsaWZpa2FjZSBNUywgQ09OTUVCT0waA3g0NCqdAwjUt4wBEhVWZW5lenVlbGEgLSBBcmdlbnRpbmEiBwiAq6TFpzIqCDUzNjI0NjQ5Mt4CCDsSDkhsYXZuw60gc8Ohemt5GmoKCzJkMjIzNTI4MzQ5EgZaw6FwYXMyTwidi8tqEgZaw6FwYXMYkF8iEwoJNDg4Mzg5ODMyEgExHdejsEAiEwoJNDg4Mzg5ODMzEgEwHSlcf0AiEwoJNDg4Mzg5ODM0EgEyHbgexT9YAmACGm8KCzNkMjIzNTI4MzUwEgdEdm9qdGlwMlMInovLahIHRHZvanRpcBiSXyIUCgk0ODgzODk4MjgSAjEwHR+FC0AiFAoJNDg4Mzg5ODI5EgIxMh1I4Zo/IhQKCTQ4ODM4OTgzMBICMDIdheuRP1gBYAIabQoLNGQyMjM1MjgzNTESElPDoXprYSBiZXogcmVtw616eTJGCJ+Ly2oSElPDoXprYSBiZXogcmVtw616eRiTXyITCgk0ODgzODk4MzESATEdcT16QCITCgk0ODgzODk4MzUSATIdmpmZP1gBYAI6Bnh4MTI3OFADYL8G This string is supposed to be encoded data about a match and the odds. I would appreciate any help with extracting the…

VIEW QUESTION
Back To Top
Search