🌐
W3Schools
w3schools.com › js › js_json_syntax.asp
JSON Syntax
JSON data is written as name/value pairs (aka key/value pairs).
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Learn_web_development › Core › Scripting › JSON
Working with JSON - Learn web development | MDN
Special JavaScript syntax, such as methods, is not allowed because methods are functions, and functions are not valid JSON data types. Objects and arrays cannot contain trailing commas. Comments are not allowed in JSON. Even a single misplaced comma or colon can make a JSON file invalid and cause it to fail.
text-based open standard designed for human-readable data interchange
whitespace
object
combox respuesta json
JSON (JavaScript Object Notation, pronounced /ˈdʒeɪsən/ or /ˈdʒeɪˌsɒn/) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of name–value pairs … Wikipedia
Factsheet
JavaScript Object Notation
Filename extension .json
Internet media type application/json
Factsheet
JavaScript Object Notation
Filename extension .json
Internet media type application/json
🌐
JSON
json.org
JSON
FileMaker · JSON · Fortran · json-fortran · YAJL-Fort · jsonff · Go · package json · Groovy · groovy-io · Haskell · RJson package · json package · Java · JSON-java · esson · JSONUtil · jsonp · Json-lib · Stringtree · SOJO · json-taglib ·
🌐
Hostinger
hostinger.com › home › tutorials › what is json: understanding syntax, storing json data and downloadable cheat sheet
What Is JSON? Syntax, Examples + Cheat Sheet
September 9, 2025 - JSON appears in files with the .json extension or inside quotes as strings or objects assigned to a variable in other file formats. JSON is a simple and lightweight alternative to Extensive Markup Language (XML), which has become less common as a data interchange format. This is because converting XML to a JavaScript object takes tens to hundreds of lines of code and requires further customization based on the specific element being parsed. In comparison, a JSON parser only takes one line of code to change text to JavaScript since the syntax of both is very similar.
🌐
Wikipedia
en.wikipedia.org › wiki › JSON
JSON - Wikipedia
March 6, 2005 - The current ECMA standard states, "The JSON syntax does not impose any restrictions on the strings used as names, does not require that name strings be unique, and does not assign any significance to the ordering of name/value pairs." Objects are delimited with curly brackets and use commas to separate each pair, while within each pair, the colon ":" character separates the key or name from its value.
🌐
Stack Overflow
stackoverflow.blog › 2022 › 06 › 02 › a-beginners-guide-to-json-the-data-format-for-the-internet
A beginner's guide to JSON, the data format for the internet - Stack Overflow
In some cases, you may want to load JSON from a file, such as for configuration files or mock data. Using pure JavaScript, it currently isn’t possible to import a JSON file, however a proposal has been created to allow this. In addition, it is a very common feature in bundlers and compilers, ...
Find elsewhere
🌐
freeCodeCamp
freecodecamp.org › news › what-is-json-a-json-file-example
JSON for Beginners – JavaScript Object Notation Explained in Plain English
November 29, 2021 - Let's create an employee.json file with attributes (represented by keys and values) of an employee.
🌐
OpenTofu
opentofu.org › the opentofu language › syntax › json configuration syntax
JSON Configuration Syntax | OpenTofu
Learn about the JSON-compatible language syntax, including file structure, expression mapping, block mapping, and block-type-specific exceptions.
🌐
JSON Checker
jsonchecker.com
JSON Checker - The Best JSON Validator and automatic formatter
When you copy paste your JSON the built-in JSON formatter will autoformat/beautify valid JSON. If your JSON is invalid, we provide clear and concise error messages pointing to a specific line number for you to validate and fix. The tool provides JSON syntax highlighting, to help with readability.
🌐
Squarespace
developers.squarespace.com › what-is-json
What is JSON? — Squarespace Developers
Value: A value can be a string, number, boolean expression, array, or object. Key/Value Pair: A key value pair follows a specific syntax, with the key followed by a colon followed by the value.
🌐
File Format Docs
docs.fileformat.com › web › json
JSON File Format - What is a JSON file?
April 12, 2020 - JSON (JavaScript Object Notation) is an open standard file format for sharing data that uses human-readable text to store and transmit data. JSON files are stored with the .json extension. JSON requires less formatting and is a good alternative for XML. JSON is derived from JavaScript but is a language-independent data format.
🌐
DigitalOcean
digitalocean.com › community › tutorials › an-introduction-to-json
An Introduction to JSON | DigitalOcean
August 24, 2022 - Each of the data types that are passed in as values into JSON will maintain their own syntax, meaning strings will be in quotes, but numbers will not be. With .json files, you’ll typically get a format expanded over multiple lines, but JSON can also be written all in one line, as in the following ...
🌐
TutorialsPoint
tutorialspoint.com › home › json › json syntax
Understanding JSON Syntax
March 14, 2013 - Learn the essential syntax of JSON, including key-value pairs, data types, and best practices for writing JSON data.
🌐
W3Schools
w3schools.com › js › js_json.asp
W3Schools.com
JSON is similar to the syntax for creating JavaScript objects.
🌐
JAXB
javaee.github.io › tutorial › jsonp001.html
Introduction to JSON
JSON is a text-based data exchange format derived from JavaScript that is used in web services and other connected applications. The following sections provide an introduction to JSON syntax, an overview of JSON uses, and a description of the most common approaches to generate and parse JSON.
🌐
JSON
json.org › example.html
JSON Example
{"menu": { "id": "file", "value": "File", "popup": { "menuitem": [ {"value": "New", "onclick": "CreateNewDoc()"}, {"value": "Open", "onclick": "OpenDoc()"}, {"value": "Close", "onclick": "CloseDoc()"} ] } }}
🌐
JSONLint
jsonlint.com
JSONLint - The JSON Validator
The mime type for JSON files is 'application/json'
🌐
TutorialsPoint
tutorialspoint.com › json › json_quick_guide.htm
JSON - Quick Guide
Before you start with encoding and decoding JSON using Ruby, you need to install any of the JSON modules available for Ruby. You may need to install Ruby gem, but if you are running latest version of Ruby then you must have gem already installed on your machine, otherwise let's follow the following single step assuming you already have gem installed − ... The following example shows that the first 2 keys hold string values and the last 3 keys hold arrays of strings. Let's keep the following content in a file called input.json.
🌐
Spiceworks
spiceworks.com › spiceworks inc › soft-tech › json types, functions, and uses with examples - spiceworks inc
JSON Types, Functions, and Uses with Examples
December 16, 2025 - JSON or JavaScript Object Notation is a standard text-based format developed from the JavaScript object syntax and used to portray structured data. JSON, pronounced as ‘jason’, is an open standard format for creating and storing files or ...
🌐
Unibo
www-db.disi.unibo.it › courses › TW › DOCS › w3schools › json › json_syntax.asp.html
JSON Syntax
JSON HOME JSON Intro JSON Syntax JSON HowTo JSON Http JSON Files JSON Example · « Previous · Next Chapter » · The JSON syntax is a subset of the JavaScript syntax. JSON syntax is derived from JavaScript object notation syntax: Data is in name/value pairs ·