Modified JSON sheet.
This commit is contained in:
parent
ac693a0111
commit
0839076441
11
JSON.md
11
JSON.md
|
|
@ -4,12 +4,19 @@
|
||||||
|
|
||||||
1. [Introduction to JSON](#introduction-to-json)
|
1. [Introduction to JSON](#introduction-to-json)
|
||||||
2. [JSON Data Types](#json-data-types)
|
2. [JSON Data Types](#json-data-types)
|
||||||
|
|
||||||
2.1 [String](#string)
|
2.1 [String](#string)
|
||||||
|
|
||||||
2.2 [Number](#number)
|
2.2 [Number](#number)
|
||||||
|
|
||||||
2.3 [Boolean](#boolean)
|
2.3 [Boolean](#boolean)
|
||||||
|
|
||||||
2.4 [Array](#array)
|
2.4 [Array](#array)
|
||||||
|
|
||||||
2.5 [Object](#object)
|
2.5 [Object](#object)
|
||||||
|
|
||||||
2.6 [Null](#null)
|
2.6 [Null](#null)
|
||||||
|
|
||||||
3. [JSON Syntax](#json-syntax)
|
3. [JSON Syntax](#json-syntax)
|
||||||
4. [JSON Example](#json-example)
|
4. [JSON Example](#json-example)
|
||||||
5. [Reading and Writing JSON in Python](#reading-and-writing-json-in-python)
|
5. [Reading and Writing JSON in Python](#reading-and-writing-json-in-python)
|
||||||
|
|
@ -18,9 +25,9 @@
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"name": "JSON Cheat Sheet",
|
"name": "JSON Cheet Sheet",
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"author": "OpenAI",
|
"author": "CheetSheetz",
|
||||||
"topics": ["JSON", "Data Types", "Syntax", "Example"]
|
"topics": ["JSON", "Data Types", "Syntax", "Example"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue