🌐
JSON
json.org › example.html
JSON Example
<!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook V3.1//EN"> <glossary><title>example glossary</title> <GlossDiv><title>S</title> <GlossList> <GlossEntry ID="SGML" SortAs="SGML"> <GlossTerm>Standard Generalized Markup Language</GlossTerm> <Acronym>SGML</Acronym> <Abbrev>ISO 8879:1986</Abbrev> <GlossDef> <para>A meta-markup language, used to create markup languages such as DocBook.</para> <GlossSeeAlso OtherTerm="GML"> <GlossSeeAlso OtherTerm="XML"> </GlossDef> <GlossSee OtherTerm="markup"> </GlossEntry> </GlossList> </GlossDiv> </glossary>
🌐
W3Schools
w3schools.com › js › js_json.asp
W3Schools.com
JSON Intro JSON Syntax JSON vs XML JSON Data Types JSON Parse JSON Stringify JSON Objects JSON Arrays JSON Server JSON PHP JSON HTML JSON JSONP JS jQuery · jQuery Selectors jQuery HTML jQuery CSS jQuery DOM JS Graphics · JS Graphics JS Canvas JS Plotly JS Chart.js JS Google Chart JS D3.js JS Examples
Discussions

Zabbix monitor JSON Example
Great stuff, thank you! Note that Zabbix supports also advanced JSONPath syntax in the latest releases with aggregation functions, etc. It might be extremely useful in some use cases. More on reddit.com
🌐 r/zabbix
3
12
May 6, 2019
How to escape strings in JSON, for example, from "cremó" to "crem\u00F3"?
If you absolutely need to escape any non-ASCII chars using escape sequence, you can do it like this: fn escape(src: &str) -> String { use std::fmt::Write; let mut escaped = String::with_capacity(src.len()); let mut utf16_buf = [0u16; 2]; for c in src.chars() { match c { '\x08' => escaped += "\\b", '\x0c' => escaped += "\\f", '\n' => escaped += "\\n", '\r' => escaped += "\\r", '\t' => escaped += "\\t", '"' => escaped += "\\\"", '\\' => escaped += "\\", c if c.is_ascii_graphic() => escaped.push(c), c => { let encoded = c.encode_utf16(&mut utf16_buf); for utf16 in encoded { write!(&mut escaped, "\\u{:04X}", utf16).unwrap(); } } } } escaped } (Playground: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=afd0cd665574230dc9b579127763e041 ) I think it should be able to handle Unicode values higher than U+FFFF, but please write your tests to verify everything. More on reddit.com
🌐 r/rust
11
9
August 5, 2020
Looking for a PyQt5 example to put a Json file into a treeview model item
First off I'd recommend posting in r/learnpython as you might get a few more replies over there. Second, you may consider breaking the problem in two. The are numerous ways to load Jason data into Python, with loading to a dict most likely the easiest. Thus you may find it easier to focus on how to translate the JSON data structure into your tree view items as the loading of the JSON shouldn't be difficult nor does it directly relate to PyQt. More on reddit.com
🌐 r/Python
4
2
September 2, 2016
Example feed MRSS or JSON

The Roku Developer Blog and the Roku forums have what you need. Can you be a bit more specific what you're looking for? There are tools available to generate the feed files.

More on reddit.com
🌐 r/RokuDev
8
1
June 21, 2015
🌐
Hostinger
hostinger.com › home › tutorials › what is json: understanding syntax, storing json data, examples + downloadable cheat sheet
What Is JSON: Understanding Syntax, Storing JSON Data, Examples + Downloadable Cheat Sheet
April 28, 2025 - This example shows that Tom signifies a string as it’s a set of characters inside a double quote. ... A number in JSON should be an integer or a floating point.
🌐
Google
developers.google.com › things to do › sample json
Sample JSON | Google Actions Center | Google for Developers
May 20, 2025 - The provided content is a sample JSON feed for a product titled "Dans bike tour".
🌐
Jsontotable
jsontotable.org › blog › json › json-examples
JSON Examples - Complete Guide with Real-World JSON Samples (2025) | JSON to Table Converter
January 16, 2025 - This guide provides practical, copy-paste ready JSON examples from simple to complex.
🌐
IBM
ibm.com › docs › en › datapower-gateway › 10.6.0
JSON examples
JSON objects and arrays can be transformed with transform actions. The following examples and the examples in the related topics, provide sample JSON objects and arrays and transformations of those objects and arrays. These examples demonstrate some JSON message processing that the DataPower ...
Find elsewhere
🌐
W3Schools
w3schools.com › js › js_json_syntax.asp
JSON Syntax
JS Examples JS HTML DOM JS HTML Input JS HTML Objects JS HTML Events JS Browser JS Editor JS Exercises JS Quiz JS Website JS Syllabus JS Study Plan JS Interview Prep JS Bootcamp JS Certificate JS Reference ... JSON data is written as name/value pairs (aka key/value pairs).
🌐
Nylas
nylas.com › developer how-tos › the complete guide to working with json
The Complete Guide to Working With JSON | Nylas
December 13, 2022 - The criteria for valid JSON is rather elementary, though it can be used to describe complex data. The structure of a JSON object is as follows: ... Each data element is enclosed with quotes if it‘s a character, or without quotes if it is a numeric value ... The key is “name” and the value is “Katherine Johnson” in the above example.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Learn_web_development › Core › Scripting › JSON
Working with JSON - Learn web development | MDN
Note: We've made the JSON seen above available inside a variable in our JSONTest.html example (see the source code).
🌐
JSON Editor Online
jsoneditoronline.org
JSON Editor Online: edit JSON, format JSON, query JSON
JSON Editor Online is the original and most copied JSON Editor on the web. Use it to view, edit, format, repair, compare, query, transform, validate, and share your JSON data.
🌐
SitePoint
sitepoint.com › blog › javascript › 10 json examples to use in your projects
10 JSON Examples to Use in Your Projects — SitePoint
February 2, 2024 - JSON files can be read using a variety of programming languages, including JavaScript, Python, and PHP. In JavaScript, for example, you can use the JSON.parse() method to convert a JSON string into a JavaScript object.
🌐
DevTools Daily
devtoolsdaily.com › json
Everything about JSON
This code uses the json.loads() function to parse a JSON string and convert it into a Python dictionary.
🌐
JSONata
docs.jsonata.org › simple
Simple Queries · JSONata
A JSON object is an associative array (a.k.a map or hash). The location path syntax to navigate into an arbitrarily deeply nested structure of JSON objects comprises the field names separated by dot '.' delimiters. The expression returns the JSON value referenced after navigating to the last step in the location path.
🌐
JSON Schema
json-schema.org › learn › json-schema-examples
JSON Schema - JSON Schema examples
{ "$id": "https://example.com/calendar.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "A representation of an event", "type": "object", "required": [ "dtstart", "summary" ], "properties": { "startDate": { "type": "string", "description": "Event starting time" }, "endDate": { "type": "string", "description": "Event ending time" }, "summary": { "type": "string" }, "location": { "type": "string" }, "url": { "type": "string" }, "duration": { "type": "string", "description": "Event duration" }, "recurrenceDate": { "type": "string", "description": "Recurrence date" }, "recurrenceDule": { "type": "string", "description": "Recurrence rule" }, "category": { "type": "string" }, "description": { "type": "string" }, "geo": { "$ref": "https://example.com/geographical-location.schema.json" } }}
🌐
GeeksforGeeks
geeksforgeeks.org › javascript › json
JSON Tutorial - GeeksforGeeks
January 13, 2026 - In a typical web application, JSON (JavaScript Object Notation) is used to transfer data between the server and the client (frontend). JSON is language-independent, which makes it ideal for communication between different technologies. Data is stored as an object (for example, a dictionary ...
🌐
JSON
json.org
JSON
ECMA-404 The JSON Data Interchange Standard.
🌐
Jsonlines
jsonlines.org › examples
JSON Lines |Examples
JSON Lines handles tabular data cleanly and without ambiguity.
🌐
Adobe
opensource.adobe.com › Spry › samples › data_region › JSONDataSetSample.html
JSON Data Set Sample
See our JSON Primer for more information. Example 1 - JSON Array with simple data types as elements.
🌐
DigitalOcean
digitalocean.com › community › tutorials › an-introduction-to-json
An Introduction to JSON | DigitalOcean
August 24, 2022 - ... { "first_name" : "Sammy", "last_name" : "Shark", "location" : "Ocean", "online" : true, "followers" : 987 } Although this is a short example, and JSON can be many lines long, this demonstrates that the format is generally set up with two curly braces (or curly brackets) that are represented ...