Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
41 views

I'm trying to create a Pandas DataFrame from a JSON file that looks like this: { "GameID": "1,218,463,841", "Date - Start": "1761097369", "Date - End&...
Margot Sibson's user avatar
2 votes
1 answer
32 views

In Groovy 4.x it was possible to escape the 'properties' keyword when using JsonSlurper using getAt('properties') like below: import groovy.json.JsonSlurper def json = new JsonSlurper().parseText(&...
Johan's user avatar
  • 41.2k
0 votes
0 answers
17 views

I'm using Spring MVC and I would like to control the deserialization of Date objects in RequestBody. I saw I can set a custom JsonDeserializer in the input object, but I would like to set a global ...
Tobia's user avatar
  • 9,595
-6 votes
0 answers
51 views

I’m trying to convert PDF’s into json files (using docling in python). The problem is I’m very inexperienced with json files. Whenever I try to transform the json files, there are too many nested ...
user29643111's user avatar
0 votes
0 answers
57 views

I am trying to figure out if there is a way to send a JSON object to a BigQuery table that has a column of type JSON. I know the current practice is to stringify the JSON and send it over which gets ...
Antares's user avatar
  • 100
-2 votes
1 answer
48 views

I'm trying to access specific values from a JSON response in Python, but I keep getting the error message: TypeError: list indices must be integers or slices, not str I understand it has something ...
Akash D's user avatar
  • 21
Advice
0 votes
0 replies
24 views

Just came across a task and had to do some digging to find the answer: How to export Azure Synapse artifacts, more specifically pipelines, conserving their folder hierarchy, when Git integration is ...
Julio Turim's user avatar
1 vote
1 answer
81 views

I'm trying to store API output into CSV/db and can not figure out how I can make for those Key in "tierList". One row in my case should be on bin and I need key as a columns in my output. Is ...
user1982778's user avatar
-2 votes
0 answers
43 views

This is probably a dumb question, and I probably put in the wrong question type on accident, but what delimiter do you use when you need to stop at the end of a json file, but not whitespaces using ...
Ayam Cemani Chicken's user avatar
1 vote
1 answer
85 views

I want to use polymorphic JSON for the RichText type in .NET 10 because I plan migrating from one richtext format to another and I am stuck with a problem: when the object is automatically serialized ...
Sannnekk's user avatar
  • 103
0 votes
0 answers
74 views

Input {     "email" : "[email protected]" },{     "email" : "[email protected]" },{     "email" : "[email protected]" },{     "email" : "kot@ma....
Raju Kumar Shah's user avatar
0 votes
2 answers
71 views

I have this big rust struct (DictWordMetadata), with more structs contained inside it. I have to check the value of a specific field in this struct or the structs contained inside it agains the value ...
Dante Ramacciotti's user avatar
0 votes
0 answers
17 views

I have multiple microservices, and I am trying to merge them using Ocelot API Gateways. I have created different JSON files for each microservice and I'm adding them using the code below. However, it'...
OpsTeQ User's user avatar
2 votes
1 answer
73 views

I have a record with a bool property that has default value = true: private record MyRecord() { public bool BoolProperty { get; init; } = true; } I want to ignore the "BoolProperty":...
Theodor Zoulias's user avatar
0 votes
0 answers
82 views

I’m currently having an issue with my code — I’m using the REST API to train a Document AI model with the custom extraction type. I have already completed the following steps: Called the v1 process ...
Nor3soN's user avatar
Best practices
0 votes
6 replies
98 views

I am trying to convert a JavaScript object into a Python dict for processing and later export to JSON. So far easy peasy by using demjson3. BUT: since there are undefined values it will convert these ...
mayo-s's user avatar
  • 65
1 vote
1 answer
111 views

After adding the dependency org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0 I tried using it like this: import kotlinx.serialization.Serializable import kotlinx.serialization.json.Json @...
SMBiggs's user avatar
  • 11.8k
1 vote
1 answer
51 views

I am encountering an issue when using JSON_TABLE in IBM i COBOL with CLOB data. Below is an example of the code I am using: EXEC SQL DECLARE C_EMP CURSOR FOR SELECT U.FIRSTNAME, U.PHONETYPE ...
JT Shan's user avatar
  • 11
0 votes
2 answers
99 views

I have a spring boot API . The call is as below: @PostMapping("/call-back") public BaseResponse<String> callBack(@RequestBody CallBackDTO callbackRequest) { } the CallBackDTO ...
Rahul SK's user avatar
  • 462
2 votes
1 answer
109 views

I'm trying to convert this CSV dir1/key1=val1/,MOVED_TO,123.pq dir2/key1=val2/key2=val3/,MOVED_TO,456.pq into this desired output (line-oriented json): {"type":"quux","top&...
r2evans's user avatar
  • 167k
Advice
2 votes
2 replies
64 views

I'm building the backend for a platform that works similarly to a game. It includes a simple character customization system with a few properties that aren't particularly relevant to the product (...
JulesMG's user avatar
  • 248
1 vote
1 answer
72 views

I have a task to convert a JSON file to a CSV with a header at the top. The header has to be in a particular order. So the order of the keys in the JSON file will be in different order than the ...
sunpack's user avatar
  • 135
0 votes
0 answers
41 views

The Problem Good afternoon! I hope this post finds you well. I am using a Dialogflow CX Data Store (backed by Vertex AI Search) to store JSON data that i made, for property listings. When I try to ...
John Liko's user avatar
0 votes
3 answers
151 views

I have a simple JSON file which is essentially a long string like this: {"quickGang": {"scopeIds": [2,9],"name": "","channelIds": [],"enabled&...
Mick T's user avatar
  • 21
0 votes
0 answers
85 views

I’m trying to load JSON data into an Iceberg table. The source files are named with timestamps that include colons (:), so I need to read them as plain text first. Additionally, each file is in a ...
Raj Mhatre's user avatar