What is JSON?
Who uses JSON?
JSON Integrations
Here are some stack decisions, common use cases and reviews by companies and developers who chose JSON in their tech stack.
Hi all,
I need advice for object-oriented data analysis. I have exported a collection of users from Firebase to JSON, and I want to analyze it, for example, how many users are females, males, etc. Are there any tools or packages that could help me quickly analyze this data?
I want to develop a custom API testing tool for which I have chosen Karate DSL. As I will be dealing with APIs, I need to handle lots of data in JSON or XML format. I need advice on which DB is best suited for my application. MongoDB or MySQL?
Please Suggest. Thank you in advance.
Hi. Currently, I have a requirement where I have to create a new JSON file based on the input CSV file, validate the generated JSON file, and upload the JSON file into the application (which runs in AWS) using API. Kindly suggest the best language that can meet the above requirement. I feel Python will be better, but I am not sure with the justification of why python. Can you provide your views on this?
Hi all, I am trying to decide on a database for time-series data. The data could be tracking some simple series like statistics over time or could be a nested JSON (multi-level nested). I have been experimenting with InfluxDB for the former case of a simple list of variables over time. The continuous queries are powerful too. But for the latter case, where InfluxDB requires to flatten out a nested JSON before saving it into the database the complexity arises. The nested JSON could be objects or a list of objects and objects under objects in which a complete flattening doesn't leave the data in a state for the queries I'm thinking.
[
{ "timestamp": "2021-09-06T12:51:00Z",
"name": "Name1",
"books": [
{ "title": "Book1", "page": 100 },
{ "title": "Book2", "page": 280 },
]
},
{ "timestamp": "2021-09-06T12:52:00Z",
"name": "Name2",
"books": [
{ "title": "Book1", "page": 320},
{ "title": "Book2", "page": 530 },
{ "title": "Book3", "page": 150 },
]
}
]
Sample query: With a time range, for name xyz, find all the book title for which # of page < 400.
If I flatten it completely, it will result in fields
like books_0_title
, books_0_page
, books_1_title
, books_1_page
, ... And by losing the nested context it will be hard to return one field (title) where some condition for another field (page) satisfies.
Appreciate any suggestions. Even a piece of generic advice on handling the time-series and choosing the database is welcome!
Can I create reusable ARM templates (JSON files) in the Bit community? I see examples of components made from React codes. How can I make the same using JSON files?
Searching for a tool (library?) to build a big document browser/search, something like a bible browser with selecting chapters and paragraphs. Navigation should be tree-based, and searching in files (the content is split into several JSON) would be a nice addition. Searching can be server-side (i.e., PHP) with JavaScript frontend for AJAX loading. Can someone point me in the right direction?