28 questions from the last 30 days
0
votes
3
answers
123
views
Convert JSON file to CSV using jq, expanding nested array data in multiple columns
I need to convert a JSON file to CSV in a bash script, this a sample file:
{
"total": 1,
"jobs": [
{
"deviceData": {
"deviceId": "...
0
votes
1
answer
105
views
Filtering out JSON properties where keys do not match length
I have JSON that looks like:
{
"18003432343": ....,
"18005553332": ....,
"1-3-2025 10:36:41_08941100 AM": ....,
"1-3-2025 11:36:41_08941100 AM": ....
}
...
1
vote
1
answer
131
views
Converting JSON to JSONL without losing original object structure
I have JSON that looks like:
{
"18003432343": {
"04:00:25": {....},
"12:00:25": {....},
},
"18005553332": {
"18:11:25": {....},
...
-3
votes
0
answers
169
views
nlohmann: Assertion failed: endptr == token_buffer.data() + token_buffer.size(), file include/nlohmann/detail/input/lexer.hpp, line 1292 [closed]
anybody anytime get next error?
Assertion failed: endptr == token_buffer.data() + token_buffer.size(), file include/nlohmann/detail/input/lexer.hpp, line 1292
i've next code:
int main(int argc, char *...
Best practices
0
votes
5
replies
83
views
How to handle "JSON payload" templates for web requests to an API?
I'm working with a 3rd party API. The API uses an elasticsearch-like query language. So queries can get quiet complex. Often I have such a complex query (eg. long json string) which has 1 or maybe 2 ...
1
vote
1
answer
141
views
How to pass parameters to Queue new build to Azure DevOps from PowerAutomate?
I want to trigger an Azure DevOps pipeline from PowerAutomate.
The pipeline requires a single parameter - UserID.
This is the Pipeline:
trigger: none
pr: none
name: User-$(Date:yyyyMMdd)$(Rev:.r)
...
0
votes
1
answer
74
views
How do I select a list of all the values of a specific field name in a recursive set of jsonb data in Postgres?
I have a column named layout in a table named pages which contains JSON.
In this case, the JSON actually represents the HTML of a page. Information is infinitely nested, just as an HTML page would be. ...
-3
votes
0
answers
96
views
Incremental/partial deserialization in Python for JSON? [closed]
I have a problem in which a program needs to:
Read in a large (4K+) JSON document;
Modify one object deeply nested in it, often just one field of one object.
Write it back out.
Even with something ...
1
vote
1
answer
91
views
How to parse an escaped JSON string into a JSON object and use it as an object in a specified field in Fluent Bit?
The logs received by fluent-bit(forward input)
{
"date": 1765435213,
"log": "{\"time\": \"2025-12-11T06:40:13+00:00\",\"tcpConnectionId\": \&...
0
votes
1
answer
86
views
GuzzleHttp send base64 image as in raw json
I need to send a image to an API and it has to be base64 encoded and send as raw json.
The request sent by Postman is received correctly
But when I try to do the same request with Guzzle I am ...
2
votes
1
answer
81
views
Filtering in column with a nested json
I have my table with a tabulator.
Example of data:
[
{
"owner": "Fred",
"color": "red",
"details": "{\"name\&...
-3
votes
0
answers
89
views
Json charges after rest of page? [closed]
I'm new at using JavaScript and studying for web design. I'm having some trouble with JSON and a gsap powered horizontal gallery.
Basically, i started designing my web portfolio without using a JSON, ...
2
votes
1
answer
58
views
Get all objects with attribute that does not have any of the provided substrings
Consider this basic JSON file:
{
"list": [
{
"random": 123,
"fruits": "pineapple"
},
{
"...
-4
votes
0
answers
67
views
Power Automate HTTP PUT is removing JSON elements on its own
Let me start by saying that I am getting no errors; the formatting is correct, I can complete the code and see that it is recognized as valid JSON formatting.
For some reason Power Automate is ...
0
votes
0
answers
69
views
Why am I getting a 401 from Coinbase Advanced API using ES256 JWT, even with a valid JSON key and permissions?
I’m trying to authenticate with the Coinbase Advanced API using an ES256 signed JWT, but I keep getting a 401 response from every endpoint.
I’m using a JSON API key created in the Coinbase Developer ...